Cerinta completa

Complete the function to compute the sum of two integers.

Example

Return .

Function Description

Complete the function with the following parameters:

  • : the first value
  • : the second value

Returns
: the sum of and

Constraints

Sample Input

a = 2
b = 3

Sample Output

5

Explanation

.


Limbajul de programare folosit: cpp14

Cod:

#include <bits/stdc++.h>
using namespace std;int main(){long long a,b;if(!(cin>>a>>b))return 0;cout<<(a+b);return 0;}

Scor obtinut: 1.0

Submission ID: 464646522

Link challenge: https://www.hackerrank.com/challenges/solve-me-first/problem

Solve Me First