Problem Description

Create a function add(a)(b)(c) that returns a+b+c. For input a b c, print the result using currying.

Input Format

One line: a b c.

Output Format

One integer.

Sample Test Case

Input:
1 2 3
Output:
6

Constraints

Values are integers in -1e9..1e9.

Solutions (0)

No solutions submitted yet. Be the first!

Discussion (0)

No comments yet. Start the discussion!

Prev Next