Module: Loop statement with condition - while


Problem

7/20

Digits of the number - 2 - fix the program

Problem

Let's try to fix the previous problem. 
To do this, you need to save the original number in some other variable, for example n1
In this case, the original value will not be lost and we will be able to display it in the output.
To do this, do the following:
1. In the 5th line, store in the variable n1 the value of the variable n.
2. In the output statement on line 11, replace the output of the value of the variable n with the output of the value of the variable n1.