OJ-Problems-Source/QUSTOJ/1300.cpp

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;
}