Write a BASIC-256 program to display The sum of 12 and 20 is: 32
Answers
Answered by
2
a=20
b=12
c=a+b
print ('sum of two number is:',c)
output 32
Answered by
0
Answer:
a=20 b=12 c=a+b print ('sum of two number is:,c)
Similar questions