#write a program that asks to user to enter #electric bill, water bill and gas bill in one month #and find the total utilities paid in that month #Part 1: Input - 3 float numbers electricity = float(input("Enter electric bill ")) water = float(input("Enter water bill ")) gas = float(input("Enter gas bill ")) #Part 2 Calculations total = electricity + water + gas #Part 3 Output results print("Total utilities for the month ", total)