
var key;
key = 0;
log("Y : Yes");
log("\n")
log("N : No");
while(key != 121 && key != 110){
key = inkey();
if(key == 121){
cls();
lc(14, 12);
log("Yes");
}
if(key == 110){
cls();
lc(14, 12);
log("No");
}
sleep(10);
}