// Example: I96c5e1
print "Example: I96c5e1";
previous_setting := GetEchoInput();
SetEchoInput(true);
if mark ge 85 then
    print "High Distinction"; 
elif mark ge 75 then
    print "Distinction"; 
elif mark ge 65 then
    print "Credit"; 
elif mark ge 50 then
    print "Pass";
else
    print "Fail";
end if;
SetEchoInput(previous_setting);
