#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); int num; int total_sum = 55; // sum of (1...10) for(int i = 0; i < 9; i++) { cin >> num; total_sum -= num; } cout << total_sum << '\n'; return 0; }