fork download
  1. print("The Python 3 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.04s 9556KB
stdin
1
2
10
42
11
stdout
The Python 3 Multiply 2 Numbers Program.
X  25  Y  25  Z  625