You are on page 1of 1

'''

a=int(input("Enter value of a: "))


b=int(input("Enter value of b: "))
c=a+b
print("The sum is: ",c)
'''

'''
a=int(input("Enter value of a: "))
b=int(input("Enter value of b: "))
c=a-b
print("The subtraction is: ",c)
'''

'''
a=int(input("Enter value of a: "))
b=int(input("Enter value of b: "))
c=a*b
print("The multiplication is: ",c)
'''

'''
a=int(input("Enter value of a: "))
b=int(input("Enter value of b: "))
c=a/b
print("The division is: ",c)
'''

'''
r=float(input("Enter value of r: "))
A=3.14*r*r
print("The area of circle is: ",A)
'''

'''
a=int(input("Enter value of a: "))
P=4*a
print("The Perimeter of sqaure is: ",P)
'''

You might also like