Solution of the exercise given on previous Day - Calculator
a = 50
b = 3
print("The value of", a, "+", b,"is", a+b)
print("The value of", a, "-", b,"is", a-b)
print("The value of", a, "/", b,"is", a/b)
print("The value of", a, "*", b,"is", a*b)
Solution of the exercise given on previous Day - Calculator
a = 50
b = 3
print("The value of", a, "+", b,"is", a+b)
print("The value of", a, "-", b,"is", a-b)
print("The value of", a, "/", b,"is", a/b)
print("The value of", a, "*", b,"is", a*b)