var a:array[1..10] of integer; i:byte; begin for i:=1 to 10 do read(a); for i:=1 to 10 do writeln(a*2); end.