Hide
Problem J
Adding Trouble
Your friend Bob is really bad at adding numbers, and he’d
like some help to make sure he’s doing it correctly! Can you
help Bob make sure he is adding correctly? Given 3 integers
Input
The input consists of a single line with 3 integers
Output
Output either correct! if
Sample Input 1 | Sample Output 1 |
---|---|
2 3 5 |
correct! |
Sample Input 2 | Sample Output 2 |
---|---|
1 1 3 |
wrong! |
Sample Input 3 | Sample Output 3 |
---|---|
-1 1 0 |
correct! |