#Program of basic arithmetic operators
a=int(input('Enter First Number'))
b=int(input('Enter Second Number'))
c=a+b
d=a-b
e=a*b
f=a/b
print("addition of two numbers",c)
print("Subtraction of two nubers",d)
print("Multiplication of two numbers",e)
print("Division of Two numbers",f)
No comments:
Post a Comment