import math
input_val=input().split()
height=math.ceil(float(input_val[0]))
type=input_val[1]
if type=='y':
    money=20+(height-1)+5
else:
    money=20+(height-1)
print(money)