#include <stdio.h>

int main(void) {
	// your code goes here
	


int i=5; 
printf("%d%d%d%d%d",i++,i--,++i,--i,i); 

	
	return 0;
}
