Beecrowd Solution of of 1003

 

First try it yourself



#include <stdio.h>
 
int main() {
 
   int A,B,SOMA;
   scanf("%d%d", &A, &B);
   SOMA=A+B;
   printf("SOMA = %d\n", SOMA);
   
 
    return 0;

}

Post a Comment

Previous Post Next Post