Create 1001.c

This commit is contained in:
Kirigaya Kazuto 2016-07-06 14:35:28 +08:00 committed by GitHub
parent ae0ba2438e
commit 65d01eb694

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