fork download
  1. n = int(input())
  2. print('n = {}'.format(n))
  3. s = input()
  4. print('s = {}'.format(s))
  5. a, b, c = map(int, input().split())
  6. print('a = {}'.format(a))
  7. print('b = {}'.format(b))
  8. print('c = {}'.format(c))
  9. xs = list(map(int, input().split()))
  10. print('xs = {}'.format(xs))
  11. ys = [int(input()) for _ in range(n)]
  12. print('ys = {}'.format(ys))
  13. pairs = [tuple(map(int, input().split())) for _ in range(n)]
  14. print('pairs = {}'.format(pairs))
  15. mat = [list(map(int, input().split())) for _ in range(n)]
  16. print('mat = {}'.format(mat))
  17.  
Success #stdin #stdout 0.02s 9412KB
stdin
3
AGC
3 1 4
1 1 2 3 5
3
3
4
-1 1
0 2
100 200
1 0 0 0
0 2 2 0
0 0 0 3
stdout
n = 3
s = AGC
a = 3
b = 1
c = 4
xs = [1, 1, 2, 3, 5]
ys = [3, 3, 4]
pairs = [(-1, 1), (0, 2), (100, 200)]
mat = [[1, 0, 0, 0], [0, 2, 2, 0], [0, 0, 0, 3]]