1009 - Salary with Bonus - URI Online Judge

Problem name: 1009 - Salary with Bonus
Problem link: 1009 - Salary with Bonus
Judge: URI Online Judge
Solution on GitHub: 1009 - Salary with Bonus


URI Online Judge 1009 - Salary with Bonus Solution in Python

Name = input()
Salary = float(input())
Sells = float(input())
Total_Salary = Salary + (Sells * 0.15)
print("TOTAL = R$ %.2f" % Total_Salary)






Next Post Previous Post
No Comment
Add Comment
comment url