from sys import stdin

for line in stdin:
	n = int(line)
	if n == 2:
		break
	print(n)
