#include int main() { int B[9]; for (int i = 0; i < 9; i++) { std::cin >> B[i]; } int i = 0; while (i + 1 == B[i]) { i++; } std::cout << i + 1; }