Ad Code

Responsive Advertisement

Uri - Beecrowd | 1001 | Extremely Basic

beecrowd | 1001

Extremely Basic

Adapted by Neilor Tonin, URI  Brazil


Read 2 variables, named A and B and make the sum of these two variables, assigning its result to the variable X. Print X as shown below. Print endline after the result otherwise you will get “Presentation Error”.

Input

The input file will contain 2 integer numbers.

Output

Print the letter X (uppercase) with a blank space before and after the equal signal followed by the value of X, according to the following example.

Obs.: don't forget the endline after all.

Samples Input Samples Output

10
9

X = 19

-10
4

X = -6

15
-7

X = 8

N.B.: It's better if you solve this by your own. Thank you!

  URI - BEECROWD Online Judge 1001 Solve  in C :                                          

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

    return 0;
}

Post a Comment

0 Comments

Ad Code

Responsive Advertisement