power = [390, 429, 468, 507, 546] L, S = input().split() L = int(L) if S == "Beat": print(power[L]) else: print(power[L - 1])