Created
August 16, 2018 18:53
-
-
Save ImOmkar/744e399d3f6ad936c94aa4c13e31be53 to your computer and use it in GitHub Desktop.
Program to calculate gross salary in python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bs=float(input("Enter your basic salary :\n")) | |
da=bs*0.6 | |
hra=bs*0.15 | |
gs=bs+da+hra | |
print("Your Gross Salary is: ",gs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment