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))