Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
87772 | 赵天瑜 | 02简单输入输出 | C++ | Wrong Answer | 1 MS | 268 KB | 175 | 2024-08-14 18:08:24 |
#include<iostream> #include<cstdio> using namespace std; int main() { int a,gw,sy; cin>>a; gw=a%10; sy=a/10; cout<<gw<<sy<<endl; return 0; }
------Input------
0
------Answer-----
0
------Your output-----
00