fork(4) download
  1. n = int(input())
  2. for i in range(0, n):
  3. [a,b] = [int(a) for a in input().split(' ')]
  4. print(a*b)
Runtime error #stdin #stdout #stderr 0.02s 118656KB
stdin
5
1 1
2 2
3 3
4 4
5 5
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "prog.py", line 3, in <module>
    [a,b] = [int(a) for a in input().split(' ')]
  File "<string>", line 1
    1 1
     ^
SyntaxError: invalid syntax