#include main() { int d[9]; scanf("%d %d %d %d %d %d %d %d %d", &(d[0]),&(d[1]),&(d[2]),&(d[3]),&(d[4]),&(d[5]),&(d[6]),&(d[7]),&(d[8])); for (int i=0; i<9; i++) { if (d[i] != i+1) { printf("%d\n", i+1); return 0; } } printf("10"); }