题解 | #牛牛的快递#
牛牛的快递
http://www.nowcoder.com/practice/41b42e7b3c3547e3acf8e90c41d98270
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)