#include #include using namespace std; int main(){ vector point(10, true); for(int i = 0; i < 9; i++){ int d; cin >> d; point[d - 1] = false; } for(int i = 0; i < 10; i++){ if(point[i]) cout << i + 1 << endl; } return 0; }