r = int(input("Radius: ")) l = int(input("Length: ")) b = int(input("Breadth: ")) print("Area of Circle =", 3.14*r*r) print("Area of Rectangle =", l*b)