提交时间:2024-12-21 11:43:46

运行 ID: 2747

#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a*a+b*b==c) { cout<<"false"; } else { cout<<"true"; } return 0; }