Create ATambahB.c

master
MD15 2020-04-10 12:07:37 +07:00 committed by GitHub
parent 7734dc6fed
commit 8ed178f2c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

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