import std; void main() { int T; readf("%d\n", T); foreach (_; 0 .. T) { long N; readf("%d\n", N); long M = N * 2; M.writeln; } }