fork download
  1. # your code goes here
  2. x=34
  3. y=66
  4. print(x+y)
  5. print(x-y)
  6. print(x**y)
  7. dz1=12
  8. dz2=14
  9. dz3=18
  10. print(dz1+dz2+dz3)
  11. print("srednia")
  12. print((dz1+dz2+dz3)/3)
  13. print(1*2+3)
  14. print(1*100)
  15.  
Success #stdin #stdout 0.01s 7116KB
stdin
Standard input is empty
stdout
100
-32
119566226947428174486789427455493912279473080815619092542489925750567758195523760118692329245236002816
44
srednia
14
5
100