WAP to input the employee code (EC), monthly salary (SAL).
Calculate 21.5% special allowance (SPL) on salary. Print total
salary (SAL+SPL) and employee code.
Answers
Answered by
0
Answer:
ecode = input()
salary = input ()
salary += 21.5/100*salary
print (salary)
print (ecode)
Explanation:
In which lang do you want to write the code?
This one is in python.
Similar questions