传送门

A - Sheep and Wolves

#include <bits/stdc++.h>
#define ll long long
using namespace std;
int main() {
    int a, b;
    scanf("%d%d", &a, &b);
    printf("%s\n", a <= b ? "unsafe" : "safe");
    return 0;
}
A.cpp

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2022-12-23
猜你喜欢
  • 2021-09-02
  • 2021-11-08
  • 2021-10-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
相关资源
相似解决方案