#include <stdio.h>

int main()
{
int i = 5 ;
printf("\n%d %d %d %d %d",i++,i--,--i,--i,--i) ;
return 0 ;
}