#include using namespace std; int main() { int ans = 55; int B; for(int i = 0; i < 9; i++) { cin >> B; ans -= B; } cout << ans << endl; return 0; }