Area Comparison


Submit solution

Points: 10
Time limit: 3.0s
Memory limit: 100M

Authors:
Problem type

寫一個程式比較方形與圓形的面積何者較大?

輸入是三個大於零的整數,分別為方形的長、方形的寬、圓形的半徑。

假設圓周率使用Math.PI,若方形的面積大於圓形的面積,則輸出true,否則輸出false。

輸入限制: 均>0

Input

4 7 3

Output

false

Input

6 3 2

Output

true


Comments

There are no comments at the moment.