#include int main(void){ int write[10]; for(int i = 0;i < 9;i++){ scanf("%d",&write[i]); if(write[i] != i + 1){ printf("%d",i + 1); } } }