fork download
  1. print("The Python 2.7 Multiply 2 Numbers Program.")
  2. x = 25
  3. y = 25
  4. z = (x * y)
  5. print ("X ",x," Y ",y," Z ",z)
Success #stdin #stdout 0.01s 7220KB
stdin
1
2
10
42
11
stdout
The Python 2.7 Multiply 2 Numbers Program.
('X ', 25, ' Y ', 25, ' Z ', 625)