Uri solution 1001 Extremely Basic

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

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes