#include <stdio.h>

int main( ) {
   int x = 2;
   printf("%d\n", x);
   
   int a = 0, b = 1;
   printf("%d %d\n", a, b);
   
   return 0;
}
