You are on page 1of 1

/************************************************************************

******

Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and
execute it.

*************************************************************************
******/

#include <stdio.h>
int main ()
{
int a;
int b;
printf("Digite um numero:");
scanf("%d", &a);
printf("Digite outro numero:");
scanf("%d", &b);
int soma= a+b;
printf("SOMA:%d", soma);
return 0;
}

You might also like