题解zhouty2023-09-12 18:05:42发布于:广东46阅读0回复0点赞首先确定测试点输入的和不会大于LLONG_MAX,所以输入n输出n就OK #include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin>>n; cout<<n; } 有帮助,赞一个去预览0/2000发布这里空空如也
有帮助,赞一个