felipeee978 felipeee978 Today at 2:15 PM Computers and Technology Answered Create a Python program that prints all the numbers from 0 to 4 except two distinct numbers entered by the user. Note : Use 'continue' statement. If user input is ``` 3 2 ``` Expected Output : '0 1 4' """