OJ-Problems-Source/QUSTOJ/1300.cpp

9 lines
111 B
C++
Raw Normal View History

2016-05-01 14:29:29 +08:00
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d\n",a+b);
return 0;
}