“Sometimes it is the people no one can imagine anything of who do the things no one can imagine.” ― Sir Alan Turing


ADS

ADS

Friday, August 5, 2016

URI 1001 - Extremely Basic || Solution in C / C++



Read 2 integer values and store them in 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. Don't present any message beyond what is being specified and don't forget to print the end of line after the result, otherwise you will receive “Presentation Error”.

Input

The input file contain 2 integer values.

Output

Print the variable X according to the following example, with a blank space before and after the equal signal. 'X' is uppercase and you have to print a blank space before and after the '=' signal.
Input SamplesOutput Samples
10
9
X = 19
-10
4
X = -6
15
-7
X = 8

SOURCE CODE

#include <stdio.h>

int main() {
  int a, b;
  scanf("%d %d", & a, & b);
  printf("X = %d\n", a + b);
  return 0;
}

No comments:

Post a Comment