# Sparsh Pandey
# 10 June 2025
# Show basic function

def area():
    side1 = int(input("Length of side 1\n"))
    side2 = int(input("Length of side 2\n"))
    area = side1*side2
    print("With side length", side1, "and side length", side2, "I get the area", area)

