URI 1003

Solution of URI 1003 >>Simple Sum

  1. #include < stdio.h >
  2. int main()
  3. {
  4. int A, B, SOMA;
  5. scanf ("%d%d", &A, &B);
  6. SOMA = A + B;
  7. printf("SOMA = %d\n", SOMA);
  8.  
  9. return 0;
  10. }

Comments

Popular posts from this blog

URI 2994 Solution

URI 2996 Solution