From d169a21b35287decdcbe26fb84082d89d40b5383 Mon Sep 17 00:00:00 2001 From: KiritoTRw <3021577574@qq.com> Date: Sun, 1 May 2016 14:29:29 +0800 Subject: [PATCH] Create 1300.cpp --- QUSTOJ/1300.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 QUSTOJ/1300.cpp diff --git a/QUSTOJ/1300.cpp b/QUSTOJ/1300.cpp new file mode 100644 index 0000000..1ac8ca7 --- /dev/null +++ b/QUSTOJ/1300.cpp @@ -0,0 +1,8 @@ +#include +int main() +{ + int a,b; + scanf("%d %d",&a,&b); + printf("%d\n",a+b); + return 0; +}