write a program to accept the salary of an employe and display the incremant salary after an increment of 8% to his existing salary
Answers
Answered by
1
Answer:
orig = float(input("Enter original salary:"))
x = float((8/100)*orig)
incremented = orig + x
print("original salary:",orig)
print("salary after 8% increment:",incremented)
Explanation:
Similar questions