#Arthmatic Operator
- a = 21
- b = 10
- #Addition
- c=a+b
- print("Line 1 : the value of c :",c) #'print' use for print line.
- #Subtraction
- c=a-b
- print("Line 2 : the value of c :",c)
- #Multiplication
- c=a*b
- print("Line 3 : the value of c :",c)
- #Division
- c=a/b
- print("Line 4 : the value of c :",c)
- #Modulus
- c=a%b
- print("Line 5 : the value of c :",c)
# Output
# Line 1 : the value of c : 31
# Line 2 : the value of c : 11
# Line 3 : the value of c : 210
# Line 4 : the value of c : 2.1
# Line 5 : the value of c : 1
#ThE ProFessoR