#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int total = 0; for (int i = 0; i <= 10; i++) { total += i; } for (int i = 0; i < 9; i++) { int b; cin >> b; total -= b; } cout << total << '\n'; return 0; }