eolymp
bolt
Try our new interface for solving problems
Problems

Sum (functions)

Sum (functions)

Implement the function:

integer solve(integer a, integer b)

  • a - first number;
  • b - second number;
  • function must return one number - the sum of two numbers.

Input

Two integers a and b (1018a, b1018) - numbers that should be added.

Output

One number will be printed - the sum of two numbers.

Time limit 1 second
Memory limit 128 MiB
Input example #1
3 5
Output example #1
8