a = 10 b = 3 print("a + b =", a + b) print("a - b =", a - b) print("a * b =", a * b) print("a / b =", a / b) print("a // b =", a // b) # 몫 print("a % b =", a % b) # 나머지
To embed this project on your website, copy the following code and paste it into your website's HTML: