#include <iostream>
#include <stdio.h>

int main()
{
	for (unsigned int i = 50; i >= 0; i--)
		printf("%d\n", i);
	return 0;
}