Hiring process8 levels
  1. 1 IQ Test
  2. 2 Additional Online Test (If Required)
  3. 3 Office Interview with Hiring Manager
  4. 4 Unpaid Test Task (Motivation Check)
  5. 5 Paid Test Task and Follow-Up Interview
  6. 6 Iterative Paid Test Tasks
  7. 7 Office Verification
  8. 8 Final Interview with the Founder

Problems > Sum of Two Numbers > Editorial

Sum of Two Numbers — Solution & Editorial

Back to the Problem

Read the two integers and print their sum. In Python:

a, b = map(int, input().split())
print(a + b)
Careful with 32-bit overflow in C/C++: the sum fits in a 64-bit integer (long long).