#include using namespace std; int main () { int i,a[10]; for(i = 0;i < 10;i++) { cin >> a[i]; if(i != a[i]) { cout << a[i]; continue; } } return 0; }