Create 1300.cpp

This commit is contained in:
KiritoTRw 2016-05-01 14:29:29 +08:00
parent de2105afab
commit d169a21b35

8
QUSTOJ/1300.cpp Normal file
View File

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