Area and Perimeter of a square

 Area and Perimeter of a square:

    

    n=int(input())

    print("Area of the square is:",(n*n))

    print("Perimeter of the square is:",(4*n))

Comments