Fading Coder

One Final Commit for the Last Sprint

AtCoder Beginner Contest 050 Problem Solutions

The input consists of an arithmetic expression in the form a + b or a - b. Parse the expression and output the computed result. int main() { int operand1, operand2; char operation; std::cin >> operand1 >> operation >> operand2; if (operation == '+') { std::cout << operand1 +...