1 条题解

  • 0
    @ 2022-12-4 18:10:44
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int x, y;
        cin >> x >> y;
        if (-1 <= x && x <= 1 &&
            -1 <= y && y <= 1)
            cout << "yes";
        else
            cout<<"no";
        return 0;
    }
    
    • 1

    信息

    ID
    276
    时间
    1000ms
    内存
    128MiB
    难度
    2
    标签
    (无)
    递交数
    142
    已通过
    88
    上传者