fork download
  1. print(10 + 5)
  2. print(10 - 5)
  3. print(10 / 5)
  4. print(10 * 5)
  5.  
  6. Print
  7.  
  8. import math
  9. print(math.ceil(2.2))
  10. print(math.floor(2.7))
  11. print(math.pow(2,10))
  12. print(math.pi)
  13.  
Runtime error #stdin #stdout #stderr 0.01s 28384KB
stdin
Standard input is empty
stdout
15
5
2.0
50
stderr
Traceback (most recent call last):
  File "./prog.py", line 6, in <module>
NameError: name 'Print' is not defined