乘坐飞机时,每位顾客可以免费托运20kg以内的行李,超过部分假定按每公斤1.2元收费的话,编写相应的收费程序
n=int(input()) s=0 if n>20: s=(n-20)*1.2 print(s)