Uri solution 1003 Simple Sum

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

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes