# 12498 - Partial Judge Example
## Brief
Design the following function:
```
int call_add(int a, int b);
```
## Input
One line, contain two number a and b (1 < a < 10, 1< b < 10).
## Output
Output a + b.
## Solution
```c=
#include <stdio.h>
#include "function.h"
int call_add(int a,int b){
return a+b;
}
```