Skip to content

Commit

Permalink
1003 C
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasPLopes committed Dec 17, 2019
1 parent e739fbe commit c0e5c74
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions C/1003.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include <stdio.h>

int main()
{

int a, b, c = 0;
scanf("%i%i", &a, &b);
c = a + b;
printf("SOMA = %i\n", c);
return 0;
}

0 comments on commit c0e5c74

Please sign in to comment.