Problems/
Two Sum
Progress

Two Sum

EASY

Problem Statement

Given two integers, return their sum.

You need to implement a function that takes two integers as input and returns a single integer which is their addition.


Input

Two integers:

a = first number
b = second number


Output

Return a single integer representing the sum of the two numbers.


Example 1

Input: a = 2
b = 3

Output: 5


Example 2

Input: a = -10
b = 25

Output: 15


Constraints

  • No constraints provided

00:00:00
Loading...
No output