fork download
  1. print(7 + 2)
  2. print(2 + 7)
  3. print(7 - 2)
  4. print(2 - 7)
  5. print(7 * 2)
  6. print(2 * 7)
  7. print(4 / 2)
  8. print(7 / 3)
  9. print(4 // 2)
  10. print(7 // 3)
  11. print(19 % 2)
  12. print(14 % 3)
  13. print(15 % 3)
  14. print(6 ** 2)# your code goes here
Success #stdin #stdout 0.1s 14104KB
stdin
Standard input is empty
stdout
9
9
5
-5
14
14
2.0
2.3333333333333335
2
2
1
2
0
36