12 lines
229 B
Python
12 lines
229 B
Python
income = float(input("Enter the annual income: "))
|
|
|
|
if income<85528:
|
|
tax = income*0.18 - 556.2
|
|
else:
|
|
tax = 14839.2 + 0.32 * (income - 85528)
|
|
|
|
if tax<0:
|
|
tax = 0
|
|
|
|
tax = round(tax, 0)
|
|
print("The tax is:", tax, "thalers") |