For the example code below, I am getting to type only input in output console, but not getting the next output. Is there anything wrong with the setup?
num = int(input("Your number: "))
if num % 2 == 0:
print("It is a Even number")
else:
print("It is a Odd number")
Output:
Your number: 44
Need to get the next print statement.