#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); set S; for (int i = 1; i <= 10; i++) { S.insert(i); } for (int i = 0; i < 9; i++) { int t; cin >> t; S.erase(t); } cout << *S.begin() << '\n'; return 0; }