11 lines
84 B
Plaintext
11 lines
84 B
Plaintext
|
main() {
|
||
|
syscall(60, f(2))
|
||
|
}
|
||
|
|
||
|
f(x) {
|
||
|
return x + 1 + g(x)
|
||
|
}
|
||
|
|
||
|
g(x) {
|
||
|
return x + 1
|
||
|
}
|