#include main(void){ int b; for (int i=1;i<10;i++) { scanf("%i",&b); if (b!=i){printf("%i\n",i); break;} if (b==9 && i==9){printf("10\n");} } }