CLS
INPUT "enter the first value of y "; a
INPUT "enter the 2nd value of y "; b
IF a <= b THEN
    LET sum = a + b
    PRINT sum,
ELSE
    LET mu = a * b
    PRINT mu,
END IF
END

PROGRAM RESULT