7 lines
84 B
Text
7 lines
84 B
Text
int add (int a, int b) {
|
|
return a + b;
|
|
}
|
|
|
|
void main () {
|
|
puti(add(1, 3));
|
|
}
|