def main(): t = int(input()) for _ in range(t): n = int(input()) print(2 * n) if __name__ == "__main__": main()