from random import randint from random import seed def solve(): n = int(input()) print(2*n) t = int(input()) while t: solve() t -= 1