#include #define rep(i, n) for (int i = 1; i <= (n); i++) using namespace std; typedef long long ll; int main(){ int b, cnt = 1; while(1){ if(cnt == 10){ cout << 10 << endl; return 0; } cin >> b; if(cnt != b){ cout << cnt << endl; return 0; } cnt++; } return 0; }