Read two integers on separate lines and print their sum.
Input:
- First line: integer A
- Second line: integer B
Output: A + B
Example:
- Input: and
- Output:
Remember to convert input strings to integers with int() before adding. Without conversion, you'd concatenate strings instead of adding numbers.