L=int(input()) M=int(input()) N=int(input()) sum=L*100+M*25+N num=int(sum//100%10+sum//25%4+sum%25) print(num)