eolymp
bolt
Try our new interface for solving problems
Problems

Sum (functions)

Sum (functions)

Time limit 1 second
Memory limit 128 MiB

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 data

Two integers a and b (10^18a, b10^18) - numbers that should be added.

Output data

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

Examples

Input example #1
3 5
Output example #1
8