7 lines
86 B
Text
7 lines
86 B
Text
#APPTYPE CONSOLE
|
|
|
|
DIM %a, %b
|
|
SCANF("%d%d", @a, @b)
|
|
PRINT a, "+", b, "=", a + b
|
|
|
|
PAUSE
|