fork download
  1. def multiplication_table(start, stop):
  2. for x in range(1, 2):
  3. for y in range(1, 3):
  4. print(str(X * y), end=" ")
  5. print()
Success #stdin #stdout 0.02s 9212KB
stdin
multiplication_table(1, 3)
stdout
Standard output is empty