提交时间:2024-05-18 14:42:51
运行 ID: 147339
#include<iostream> #include<cmath> using namespace std; int main(){ double a,b,c,d; cin>>a>>b; c=sqrt(a); d=sqrt(b); c=fmod(a,c); d=fmod(b,d); if(c==0) cout<<1<<endl; else cout<<0<<endl; if(d==0) cout<<1; else cout<<0; }