im stuck trying to do a input that takes a yes or no answer and then prints a string depending on the answer, the code seems right but anytime i try and open that same IDLE file that has the code it shows the input but when i type yes or no it just closes automatically without printing what it was asked
sample text:
shower = input('have you showered today?:')
if shower == 'yes':
print('good job ^^')
else:
print('take the nice cold shower ^^')