Create 1001.c

pull/23/head
Kirigaya Kazuto 2016-07-06 14:35:28 +08:00 committed by GitHub
parent ae0ba2438e
commit 65d01eb694
1 changed files with 8 additions and 0 deletions

8
LuoGu/1001.c Normal file
View File

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