#abc199a. A - Square Inequality
A - Square Inequality
Score : points
问题描述
给定整数 、 和 。
判断是否满足不等式 。
以上为通义千问 qwen-max 翻译,仅供参考。
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
.
Sample Input 1
2 2 4
Sample Output 1
Yes
Since and , we have , so we should print Yes
.
Sample Input 2
10 10 10
Sample Output 2
No
Since and , does not hold.
Sample Input 3
3 4 5
Sample Output 3
No