#include int main() { for (int i = 1; i < 11; i++) { int temp; std::cin >> temp; if (temp != i) { std::cout << i << std::endl; return 0; } } }