← 返回 meta 的题目列表Find the sum of two numbers
类型:online_judge
Given two integers, compute their sum.
Input
Two integers where each integer ranges from -10^9 to 10^9.
Output
An integer representing the sum of the input integers.
Example
Input: 1, 2
Output: 3
Input: -5, 7
Output: 2
Constraints
The inputs are two 32-bit integers.
Example
Input
1 2