#include #include using namespace std; int main() { // L枚の100円玉,M枚の25円玉,N枚の1円玉 int L,M,N; cin >> L >> M >> N; // 1円玉を25円玉に両替 M += N / 25; N %= 25; // 25円玉を100円玉に両替 L += M / 4; M %= 4; // 100円玉を1000円札に両替 L %= 10; cout << L+M+N << endl; return 0; }