Problem6648--P90

6648: P90

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

超市为了促销规定:
购物不超过50元的按原价付款
超过50元不超过150元的,超过部分按九折付款
超过150元的,超过部分按八折付款
请你编写一个程序完成超市的自动计费工作

Input

一行一个整数,代表物品的总价格

Output

一行一个整数,代表优惠后的费用

Sample 1 Input

45

Sample 1 Output

45

Sample 2 Input

100

Sample 2 Output

95

Sample 3 Input

200

Sample 3 Output

180

Source/Category