fork download
  1. print(7 - 2)
  2. print(7 + 2)
  3.  
  4. print(24 * 8)
  5. print(14 // 2)
  6.  
  7. print(19 % 2)
  8. print(6 ** 2)
Success #stdin #stdout 0.1s 14132KB
stdin
Standard input is empty
stdout
5
9
192
7
1
36