Write a syntax format to initialize the two integer numbers a=9 and b=4.
Answers
Answered by
1
Answer:
program:
CLS
LET a = 9
LET b = 4
PRINT a + b
END
Output will be:
13
Hope it helps you
Similar questions