fork download
  1. print(input())
  2.  
  3. x, y, z = [int(x) for x in input().split()]
  4. for i in range(1, 5):
  5. print("{0} {1} {2} {3}".format(i, i**x, i**y, i**z))
Success #stdin #stdout 0.03s 9440KB
stdin
Hello, I'm a compiler
2 3 5
stdout
Hello, I'm a compiler
1 1 1 1
2 4 8 32
3 9 27 243
4 16 64 1024