This simple problem reinforces key concepts: Always convert input to the right type. int(input()) for integers, float(input()) for decimals.
Each print() outputs on a new line by default. No need for \n.
Arithmetic operators work as expected: +, -, *.
Keep solutions simple. Don't over-engineer. Three prints, three operations, done. These patterns repeat in almost every problem. Get comfortable with them. Input, process, output. That's the structure of most programs.