#include<iostream>
using namespace std;
int main()
{
    int a, b, c;
    cin>>a>>b>>c;
    cout<<c<<b<<a;
    return 0;
}

答案错误:您提交的程序没有通过所有的测试用例
case通过率为0.00%

???


#include<iostream>
using namespace std;
int main()
{
    int a, b, c;
    cin>>a>>b>>c;
    cout<<c<<" "<<b<<" "<<a;
    return 0;
}

答案正确:恭喜!您提交的程序通过了所有的测试用例
orz
输入输出格式很重要啊各位


为什么题目里要写 0 <= a, b,c <= 2^{31}-1