#include <stdio.h>
 
int main(void) {
	int i=6;
 
   for(--i; --i; i--)
 
   {
 
        printf("%d",i);
 
   }
	return 0;
}