13 lines
142 B
C
13 lines
142 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int f(int n) {
|
||
|
if (n>100)
|
||
|
return n-10;
|
||
|
else
|
||
|
return f(f(n+11));
|
||
|
}
|
||
|
|
||
|
int main(void) {
|
||
|
|
||
|
}
|