1
2
3
4
5
6
7
8
9
10
|
def returnIncome(income):
if income>5000000 : taxed= int(income*0.2)
elif income > 1000000: taxed = int(income * 0.1)
else : taxed = 0
return (income-taxed)
while 1:
income=int(input())
if income==0: break
else: print(returnIncome(income))
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
백준 23810 골뱅이 찍기 - 뒤집힌 ㅋ (0) | 2022.03.11 |
---|---|
백준 23805 골뱅이 찍기 - 돌아간 ㄹ (0) | 2022.03.11 |
백준 23811 골뱅이 찍기 - ㅌ (0) | 2022.03.11 |
백준 23812 골뱅이 찍기 - 돌아간 ㅍ (0) | 2022.03.11 |
백준 23802 골뱅이 찍기 - 뒤집힌 ㄱ (0) | 2022.03.11 |
댓글