提交记录 3286
| 提交时间 |
评测时间 |
| 2018-07-11 18:40:36 |
2020-07-31 21:13:34 |
#include<cstdio>
int read(){
char ch=getchar();
int re=0,fl=1;
if(ch=='-'){fl=-1;
ch=getchar();}
while(ch>='0'&&ch<='9'){
re=re*10+ch-'0';
ch=getchar();}
return fl*re;}
void put(int r){
if(r>9)put(r/10);
putchar(r%10+'0');}
int main(){
int a=read(),b=read();
put(a+b);return 0;}
| Compilation | N/A | N/A | Compile Error | Score: N/A | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-04-18 21:13:44 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠