Error
|
|
---|---|
@Ibrahim Nash | 5761 |
@blackshadows | 5701 |
@akhayrutdinov | 5111 |
@mb1973 | 4989 |
@Quandray | 4944 |
@saiujwal13083 | 4506 |
@sanjay05 | 3762 |
@marius_valentin_dragoi | 3516 |
@sushant_a | 3459 |
@verma_ji | 3341 |
@KshamaGupta | 3318 |
Complete Leaderboard | |
|
|
@aroranayan999 | 938 |
@bt8816103042 | 739 |
@SHOAIBVIJAPURE | 428 |
@codeantik | 412 |
@SherlockHolmes3 | 407 |
@neverevergiveup | 348 |
@mahlawatep | 347 |
@shalinibhataniya1097 | 343 |
@murarry3625 | 333 |
@saiujwal13083 | 326 |
@rohitanand | 314 |
Complete Leaderboard |
Given two positive integers X and Y. You have to add two integers and output their sum.
Example 1:
Input:
X = 3, Y = 4
Output:
7
Explanation:
Sum of X and Y is 7
Example 2:
Input:
X = 8, Y = 2
Output:
10
Explanation:
Sum of X and Y is 10.
Your Task:
Your task is to complete the function add() which accepts BigIntegers x and y as input parameters, and returns their sum.
Constraints:
1 <= X, Y <= 1030
We strongly recommend solving this problem on your own before viewing its editorial. Do you still want to view the editorial?
Yes