If you simply type an integer after the >>>
prompt they give you in the IDLE interpreter, most of the time it'll simply bounce the number back at you.
>>> 3
3
>>> 8
8
>>> 10
10
Start the nubmer off with a 0 however, and some interesting errors happen.
>>> 010
8
>>> 020
16