Evaluate arithmetic expression HARD Expresii (BAC) 50 XP 0 solved
Mobile coding works. A laptop is faster for long sessions.

Problem

The program reads from standard input an arithmetic expression consisting of non-negative integers, the operators `+`, `-`, `*`, `/`, and (optionally) spaces. The expression contains no parentheses. The operator `/` denotes integer division (truncated toward zero), as in C/C++. Print the value of the expression, computed following the usual precedence rules (`*` and `/` have higher precedence than `+` and `-`) and left-to-right associativity for operators of equal precedence.

Input format

Input input.txt

The program reads from standard input a single line containing the expression. - The length of the expression is at most 200 characters. - Numbers in the expression are non-negative and have at most 9 digits. - The value of the expression and all intermediate sub-expressions fit in `long long`. - The operator `/` is integer division; the divisor is never zero.

Output format

Output output.txt

The program prints to standard output a single integer: the value of the expression.

Example

input
12 * 3 + 4 - 6 / 2
output
37

Ready to solve this challenge?

Create a free account to write code, submit solutions, and track your progress.

⌨️ Keyboard Shortcuts

Code Editor
Run Code
Ctrl Enter
Submit Code
Ctrl Shift Enter
Format Code
Shift Alt F
Toggle Comment
Ctrl /
Undo
Ctrl Z
Redo
Ctrl Y
Navigation
Global Search
/
Show Shortcuts
?
Close Modal
Esc

🔍 Interactive Debugger

0 / 0

Analyzing your code...

📦 Variables

No variables yet

📚 Call Stack
main() line 1
📤 Output
We use cookies

Essential cookies are always active. You can choose to enable preference and analytics cookies. Learn more