Write a program add.
py
April 14, 2025
[2]: # operations 2(b)
#23071A1073
a=int(input("Enter first number: "))
b=int(input("Enter second number: "))
#23071A1073
print(type(a))
print(type(b))
#23071A1073
c=a+b
print(type(c))
print("The sum of",a,"and",b,"is :",c)
Enter first number: 6
Enter second number: 5
<class 'int'>
<class 'int'>
<class 'int'>
The sum of 6 and 5 is : 11