Given the radius of a circle and the area of a square, return true if the circumference of the circle is greater than the square's perimeter and false if the square's perimeter is greater than the circumference of the circle.
circleOrSquare(16, 625) ➞ true
circleOrSquare(5, 100) ➞ false
circleOrSquare(8, 144) ➞ true