Sunday, August 1, 2021

Core-Python program for simple Arithmetic operator.

 print('Enter  the values')

a=7

b=5

print('first value:',a)

print('second value:',b)

c=a+b

d=a-b

e=a*b

f=a/b

g=a%b

print("The sum of the values {0}and{1} is: {2}".format(a,b,c))

print("The Difference of the values {0}and{1} is: {2}".format(a,b,d))

print("The Multiple of the values {0}and{1} is: {2}".format(a,b,e))

print("The Division of the given values {0}and{1} is: {2}".format(a,b,f))

print("The Remainder of the given values {0}and{1} is: {2}".format(a,b,g))



USD TO INR C++ PROGRAMMING

  NALLAMUTHU GOUNDER MAHALINGAM COLLEGE                                                 POLLACHI-642001                                     ...