print('This program is to make:\n')
print('\t a red LED turn ON for the wrong guessing\n')
print('\t a blue LED turn ON for the correct guessing\n')
print('Remarks: No limiton guessing trials\n\n')

from machine import Pin
from utime import sleep #utime since uphyton is used

led_red = Pin(14, Pin.OUT) #connect the LED to GPIO 14
led_blue = Pin(12, Pin.OUT) #connect the LED to GPIO 14

target = 50

while True: #forever loop

    #obtain input from the user:
    value = int(input('Enter an integer between 1 and 100: '))

    if value > target:
        print('WRONG!', value, 'is high/too high')
        for i in range (3):
            led_red.on()
            sleep(0.5)
            led_red.off()
            sleep(0.5)

            led_blue.off()

    elif int(value) < target:
        print('WRONG!', value, 'is low/too low')
        for i in range (3):
            led_red.on()
            sleep(0.5)
            led_red.off()
            sleep(0.5)

            led_blue.off()

    else:
        print('Perfect! Kudos!')
        for i in range (5):
            led_blue.on()
            led_red.off()
            break