# +, - , * , /, // , %, **print(5+5)print(5-5)print(5*5)print(5/5)print(5/4)print(5//4)print(10%9)print(2**3)print((4 + 2) * 3)print(5**2**2) #Right to Leftprint("hello " * 5)
Post a Comment