Code Breaker: Challenge #10 _

Difficulty Level: 2 Padlocks

Your score: 1800 pts

Check the following pseudo-code to work out the passcode needed to complete this level:
FUNCTION getNewPrice(price,discount)
   newPrice = price - discount
   RETURN newPrice
END FUNCTION

BEGIN
myPrice = 1500
myDiscount = 100
passcode = getNewPrice(myPrice,myDiscount)
OUTPUT passcode
END
Enter your passcode:
ERROR
SUCCESS
1
2
3
4
5
6
7
8
9
0