'input ̃mubLOTv
clr
print "e:end c:clear h:left l:right k:up j:down"

system.io.inputblock=0

x=10
y=35

loop:

input c

if c=="j" then x=x+1
if c=="k" then x=x-1
if c=="l" then y=y+1
if c=="h" then y=y-1

if x<2 then x=2
if y<1 then y=1
if x>20 then x=20
if y>70 then y=70

if c=="c" then clr
location x,y

print "#"


if c<>"e" then goto loop:




system.io.inputblock=1


input a
print a
input a
print a

