def solve(N): return 2 * N T = int(input()) for _ in range(T): print(solve(int(input())))