Skip to content

Instantly share code, notes, and snippets.

@gabrielcesar
Created July 21, 2016 14:27
Show Gist options
  • Save gabrielcesar/6e0848d5234c01b499ae06b39022a118 to your computer and use it in GitHub Desktop.
Save gabrielcesar/6e0848d5234c01b499ae06b39022a118 to your computer and use it in GitHub Desktop.
c) Simple sum
/*
* c
*/
#include <stdio.h>
int main ( void )
{
int a;
int b;
scanf ( "%d", &a );
scanf ( "%d", &b );
printf ( "SOMA =%d\n", a + b );
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment