fork download
  1. a = "The Python 2.7 Subtract/Divide Program."
  2. print(a)
  3. b = 100
  4. c = 25
  5. d = (b - c)
  6. print("B ",b," C ",c," D ",d)
  7. e = 2025
  8. f = 45
  9. g = (e / f)
  10. print("E ",e," F ",f," G ",g)
Success #stdin #stdout 0.02s 7104KB
stdin
1
2
10
42
11
stdout
The  Python 2.7 Subtract/Divide Program.
('B ', 100, ' C ', 25, ' D ', 75)
('E ', 2025, ' F ', 45, ' G ', 45)