Files

12 lines
229 B
Python
Raw Permalink Normal View History

2026-04-08 10:16:11 +02:00
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")