fork(2) download
  1. # your code goes here
  2. t=raw_input()
  3. while t>0:
  4. a,b=map(long,raw_input().split())
  5. l=a*b
  6. print l
  7. t=t-1
Runtime error #stdin #stdout #stderr 0.01s 7696KB
stdin
5
4 2
123 43
324 342
0 12
9999 12345
54 4
stdout
8
5289
110808
0
123437655
216
stderr
Traceback (most recent call last):
  File "prog.py", line 4, in <module>
EOFError: EOF when reading a line