Sum of Three Numbers
Read three integers and print their total.
Input format
A single line with three integers A, B, and C.
Output format
Print the sum A + B + C.
Constraints
- Values fit in a 64-bit signed integer
- Trailing whitespace and a trailing newline are ignored by the judge
Read from stdin, write to stdout. Sample cases below show the exact format.
Sample cases
Example 1
Input
1 2 3Expected output
6Example 2
Input
10 20 30Expected output
60