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'
"""