摘要: 题目链接 A 签到题 #include <bits/stdc++.h> using namespace std; int a , b ; int main() { cin >> a >> b; if( a < b ) puts("0"); else puts("10"); } B 枚举即可,判断特殊 阅读全文
posted @ 2021-10-22 22:09 PHarr 阅读(26) 评论(0) 推荐(0) 编辑