Code Breaker: Challenge #1 _

Difficulty Level: 1 Padlock

Your score: 0 pts

Check the following pseudo-code to work out the passcode needed to complete this level:
BEGIN
a = 5
b = 7
c = "5"
d = "7"
ab = a + b
cd = c + d
passcode = ""
passcode = passcode + ab
passcode = passcode + cd
OUTPUT passcode
END
Enter your passcode:
ERROR
SUCCESS
1
2
3
4
5
6
7
8
9
0