OJ-Problems-Source/QUSTOJ/1300.cpp
2016-05-01 14:29:29 +08:00

9 lines
111 B
C++

#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d\n",a+b);
return 0;
}