Skip to content

athira166/Solve_Me_first

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Problem

Solve in any one you know.

Complete the function solveMeFirst to compute the sum of two integers.

Example

a = 7

b = 3

Return 10.

Function Description

Complete the solveMeFirst function in the code.

SolveMeFrist has the following Parameters.

  • int a: the first value
  • int b: the second value

Returns

- int: the sum of a and b

Constraints

1 <= a,b <= 1000

Sample Input

  
    a = 3 
    b = 2
  

Sample Output

  
    5
  

Explanation

3 + 2 = 5

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C 42.0%
  • C++ 34.9%
  • Python 23.1%