Write a Python program that takes two numbers and an operator (+, -, *, /) and performs the corresponding calculation.
Two numbers and an operator separated by spaces (e.g., '10 5 +').
Print the calculation result.
Valid operator; no division by zero.
10 5 +
15.0
Use conditional checks or match-case on the operator string to select the arithmetic operation.
# Write your code here
Embedded systems rely on efficient low-level programming to interact directly with hardware. In this course, you will learn how to write practical Embedded C programs used in real microcontroller-based systems. Rather than focusing only on theory, this course follows a practice-driven approach. Each lesson includes hands-on coding exercises that simulate real firmware development tasks used