#include using namespace std; typedef long long ll; #define pb push_back #define rep(i,n) for(int i=0;i<(n);++i) int main(){ cin.tie(0); ios::sync_with_stdio(false); vector a(11); for(int i=0;i<9;++i){ int b; cin >> b; a.at(b)=true; } for(int i=1;i<11;++i){ if(!a.at(i)) cout << i << endl; } }