#!/usr/bin/python

i=52
while i>=1:
	print "%d"%i,
	i-=1

