# this is my first Python program first_name = "bread" last_name = "milc" favorite_food = "67 shaped pizza" print(f"hello {first_name}") print(f"I like {favorite_food}") print("It's really good!")