100 atcoder#ABC199A. [ABC199A] Square Inequality
[ABC199A] Square Inequality
Score : points
Problem Statement
You are given integers , , and . Determine whether holds.
Constraints
- , , and are integers.
Input
Input is given from Standard Input in the following format:
Output
If holds, print Yes
; otherwise, print No
.
2 2 4
Yes
Since and , we have , so we should print Yes
.
10 10 10
No
Since and , does not hold.
3 4 5
No