Answer:
program by INPUT statement
Step-by-step explanation:
CLS
REM to enter length of a square and print area of square.
INPUT "Enter length of a square"; l
LET Area of a square = l^2
PRINT " AOF "; Area of a square.
END
Using python,
Length=int(input('Enter the length :'))
Breadth=int(input('Enter the breadth :'))
Area=length*breadth
print('The area is:' , Area)
6.0m questions
7.8m answers