import sys input = sys.stdin.readline T=int(input()) for tests in range(T): A,B=map(int,input().split()) print(A*B+B)