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