1001 - Extremely Basic


Problem Link


A solution in c

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

}





No comments

Theme images by Jason Morrow. Powered by Blogger.