home
Learn
screen_rotation
a = 10 b = 3 print(a + b) print(a - b) print(a * b) print(a / b) print(a % b) print(a ** b) # same as 10*10*10 print(a // b) # rounds the result down to the nearest whole number
Program Output
13 7 30 3.3333333333333335 1 1000 3