Code Breaker: Challenge #8 _

Difficulty Level: 3 Padlocks

Your score: 1300 pts

Check the following pseudo-code to work out the passcode needed to complete this level:
BEGIN
count = 0
number = 48

WHILE (number MOD 2) == 0
   number = number / 2
   count = count + 1
END WHILE

passcode = "12"
passcode = passcode + number + count
OUTPUT passcode
END
Enter your passcode:
ERROR
SUCCESS
1
2
3
4
5
6
7
8
9
0