''' DS2000 Spring 2022 Sample code from class -- Grizz conversions ''' def main(): # Step One: Gather data by prompting the user kilos = int(input("How much does Grizz weigh in kilos?\n")) # Step Two: Perform the calculation we need, kilograms --> pounds pounds = kilos * 2.2 # Step Three: Communicate! Report back pounds to the user print("That means Grizz weighs", pounds, "pounds!") main()