INPUT :
y=int(input("Enter the number a:"))
z=int(input("Enter the number b:"))
a=(y+z)
print("a.addition =",a)
b=(y-z)
print("b.subraction =",b)
c=(y*z)
print("c.multiplication =",c)
d=(y/z)
print("d.division =",d)
OUTPUT :
Enter the number a:5
Enter the number b:6
a.addition = 11
b.subraction = -1
c.multiplication = 30
d.division = 0.8333333333333334