The code below runs fine in the interpreter, but when I put it in sublime text it only gets to the input request and stops without running the indented code block. Not sure what I am doing wrong either in the configuration, setup, or in the code itself…Thoughts?
inp = input("Enter a number: ")
if float(inp) >= 100.0:
print(“That’s big!”)
else:
print(“That’s small!”)