Simple Algebra
题号:NC52850
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 32 M,其他语言64 M
Special Judge, 64bit IO Format: %lld

题目描述

Given function , check if holds for all .

输入描述:

The input contains zero or more test cases and is terminated by end-of-file.
Each test case contains three integers a, b, c.
*
* The number of tests cases does not exceed .

输出描述:

For each case, output "`Yes`" if  always holds. Otherwise, output "`No`".
示例1

输入

复制
1 -2 1
1 -2 0
0 0 0

输出

复制
Yes
No
Yes