Exercise: Rectangle
- Write a script called basic2_rectangle_input.py that will ask for the sides of a rectangle and print out the area.
- Provide error messages if either of the sides is negative.
python rect.py Side: 3 Side: 4 The area is 12
python rect.py Side: 3 Side: 4 The area is 12