Here's the complete solution: python a = int(input()) b = int(input()) print(a + b) print(a - b) print(a * b) That's it. Read two integers, print three calculations. Each print automatically adds a newline, so the outputs appear on separate lines.
Remember: input() returns a string, so we wrap it with int() to convert to a number. Without that conversion, a + b would concatenate strings instead of adding numbers.