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