#include int main(void){ int L,M,N,L1,M1,N1; printf("1円硬貨、25円硬貨、100円硬貨はそれぞれ何枚ですか?\n"); scanf("%d%d%d",&N,&M,&L); N1 = N%25; M1 = (M+N/25)%4; L1 = (L+M/4)%10; printf("%d\n",L1+M1+N1); return 0; }