#include <stdio.h>

int main(){
   int c=10,r;

   r=(c++)-c;

   printf("%d\n\n", r);
   return 0;
}   
	
