// No.32 貯金箱の憂鬱 #include using namespace std; int main() { int L, M, N; cin >> L >> M >> N; int tot = L * 100 + M * 25 + N * 1; int res = 0; tot %= 1000; res += tot / 100; tot %= 100; res += tot / 25; tot %= 26; res += tot; cout << res << endl; }