提交时间:2021年12月30日 16:49
语言:C运行时间:56ms占用内存:140K
运行状态:
Output Limit Exceeded
#include <stdio.h>
int main(){
while(1){
int i,A=0,B=0,C=0,D=0;
scanf("%d%d",&A,&B);
while(A!=0){
i=A%10;
A=A/10;
C=C*10+i;
}
while(B!=0){
i=B%10;
B=B/10;
D=D*10+i;
}
printf("%d",C+D);
}
}