print ('hello, welcome to our bar')
age = int(input("What is your age"))
if age < 21:
print ('*kicks your ass out of bar*')
else:
print("come on in")
I am able to run the code and have it ask for a number, once you enter the number under the number the desired output comes out. What is want is for instead of the output to look like
hello, welcome to our bar
What is your age25
come on in
I want it to just look like
come on in
very new so sorry if this is super simple I have been searching for someone who has previously asked this but none of the code I'm finding works