fork download
  1. # your code goes here
  2. t=int(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
Success #stdin #stdout 0.01s 7740KB
stdin
6
4 2
123 43
324 342
0 12
9999 12345
54 4
stdout
8
5289
110808
0
123437655
216