Q18Numerical3 Marks7 Aug 2022
What is the output of the following snippet of code?
```
n = 1283848
x = 0
while n > 0:
if n % 10 == 8:
n = n // 10
continue
x = x * 10 + (n % 10)
n = n // 10
print(x)
```
Press Enter to check.