When I enter my variable into the line I get the TypeError.
num = int(input("Enter a number"))
print("You are " + num * 7 + " dog years old")
I expect it to just take the input then multiply it by 7 and give the final number, but I just get the error. I barely understand str and int so an explanation of each would help too.