4
4
/bin/python3
import math
import os
import random
import re
import sys
# Create the square class and print a message plus the area
class square(object):
def display(self):
print('This is a Square')
def area(self, Side):
area = Side * Side
print(f'Area of square is {area}')
l = int(input())
b = int(input())
s = int(input())
obj1 = rectangle()
obj1.display()
obj1.area(l,b)
obj2 = square()
obj2.display()
obj2.area(s)
# STDIN
# 5
# 4
# 6
# This is a Rectangle
# Area of Rectangle is 20 (Double Spaces)
# This is a Square
# Area of square is 36 (Double Spaces)