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