提交时间:2024-02-16 00:13:15

运行 ID: 40693

#include<iostream> using namespace std; int main() { float x,y; scanf("%f%f",&x,&y); if(x>=-1.0&&x<=1.0&&y>=-1.0&&y<=1.0) printf("yes"); else printf("no"); return 0; }