#include <stdio.h>

int main ()
{
int a = 2;
int b = 4;
int c;
 
 c = ((b++) % (++a));

 printf("%d %d %d\n",a,b,c);
 
  return 0;
}
