Write a program that creates variables for jan_sales (5000) and feb_sales (7000).
Calculate and print the total sales for these two months.
Check if the total sales are greater than 10,000, and print the result (True/False).
Python code:
jan_sales = 5000
feb_sales = 7000
total_sales = jan_sales + feb_sales
print("Total Sales:",total_sales)
is_exceeding = total_sales > 10000
print("Total exceeds 10,000:",is_exceeding)