//============================================================================ // Name : yuki32.cpp // Author : // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ #include using namespace std; int main() { int l, m, n; cin >> l >> m >> n; cout << n%25 + (m + n/25)%4 + (l + (m + n/25)/4)%10 << endl; return 0; }