1003 - Soma Simples
Igualzinho ao 1001 - Extremamente Básico.
Descrição
Solução
Vide problema 1001 - Extremamente Básico.
#include <stdio.h>
int main(){
int A, B;
scanf("%d\n%d", &A, &B);
printf("SOMA = %d\n", A + B);
return 0;
}
Last updated
Was this helpful?