fork download
  1. DOG = 25
  2. FROG = 8
  3. CAT = 80
  4. HORCE = 46
  5. RESULT = DOG + FROG + CAT + HORCE
  6. print(RESULT)
  7.  
  8. a = 617
  9. b = int (a)
  10. print(b)
  11. c = 45
  12. d = float(c)
  13. print(d)
Success #stdin #stdout 0.02s 7224KB
stdin
Standard input is empty
stdout
159
617
45.0