from math import ceil

weight,urgent = input().split()

fee = 20
weight = float(weight)

if weight > 1:
    beyond_weight = weight - 1
    
    beyond_weight = ceil(beyond_weight)
    
    fee += beyond_weight

if urgent == 'y':
    fee += 5

print(fee)