fork download
  1. print("The Python 2.7 Math Program.")
  2. a = 60
  3. b = 35
  4. c = (a - b)
  5. print("A ",a, " B ", b, " C ",c)
  6. d = 91
  7. e = 13
  8. f = (d / e)
  9. print("D ", d, " E ", e, " F " ,f)
Success #stdin #stdout 0.01s 6980KB
stdin
1
2
10
42
11
stdout
The Python 2.7 Math Program.
('A ', 60, ' B ', 35, ' C ', 25)
('D ', 91, ' E ', 13, ' F ', 7)