I am unable to place an integer inside my print statement alongside a string, and concatenate them together.
pounds = input("Please type in your weight in pounds: ")
weight = int(pounds) * 0.45
print("You " + weight)
I thought that I would be able to put these together, why am I unable to?