#C4196. Alice's Final Score Calculation
Alice's Final Score Calculation
Alice's Final Score Calculation
Alice's final score is calculated by adding her individual score and her team's contribution. You are given two integers \(X\) and \(Y\), where \(1 \le X \le 100\) and \(0 \le Y \le 100\). The final score is computed as:
\(\text{score} = X + Y\)
Write a program to compute and output the final score.
inputFormat
The input consists of a single line containing two integers \(X\) and \(Y\), separated by a space.
outputFormat
Output a single integer representing the sum \(X + Y\).
## sample45 30
75