Try to find the area of various shapes!
Write a Python program which accepts the length of a square from the user and compute the area.
There will be one input.
Program should print a single integer representing the area of the square.
INPUT:
4
OUTPUT:
16
Write a Python program which accepts the length and height of a rectangle from the user and compute the area.
There will be two inputs.