salary = float(input("Введите зарплату: "))experience = int(input("Введите стаж: "))
if experience >= 2 and experience < 5:bonus = salary 0.02elif experience >= 5 and experience < 10:bonus = salary 0.05else:bonus = 0
total_payment = salary + bonus
print(f"Надбавка: {bonus}")print(f"Сумма к выплате: {total_payment}")
salary = float(input("Введите зарплату: "))
experience = int(input("Введите стаж: "))
if experience >= 2 and experience < 5:
bonus = salary 0.02
elif experience >= 5 and experience < 10:
bonus = salary 0.05
else:
bonus = 0
total_payment = salary + bonus
print(f"Надбавка: {bonus}")
print(f"Сумма к выплате: {total_payment}")