1program syn(output);
2var i, j are integer;
3begin
4	for j :* 1 to 20 begin
5		write(j);
6		i = 2 ** j;
7		writeln(i))
8	end
9end.
10