Create a file named sales_bonus.py
2. Prompt the user for the amount of sales made, convert to afloat, and assign to sales.
3. Prompt the user for number of days missed, covert to an int,and assign to days_missed
4. If the user have more than 3000 of sales and has missed lessthan or equal to two days of work, assign bonus to 100.
5.   Else if the user have more than 3000 ofsales or has missed less than or equal to one day of work, assignbonus to 50.
6. Otherwise, assign a bonus of 0.
7. Print out the bonus with two decimal places of precision.