1008 - Salary - URI Online Judge
Problem name: 1008 - Salary
Problem link: 1008 - Salary
Judge: URI Online Judge
Solution on GitHub: 1008 - Salary
URI Online Judge 1008 - Salary Solution in Python
Employee = int(input())
WorkingHours = int(input())
SalaryPerHour = float(input())
amount = WorkingHours * SalaryPerHour
print("NUMBER =", Employee)
print("SALARY = U$ {:.2f}".format(round(amount, 2)))
