#include <stdio.h>

void f(int n)
{ if(n<=4);
 return;
 printf("%d",n);
 f(n-2);}
 
 int main()
 { printf("%d",&f(5));
 }