9 lines
88 B
C
9 lines
88 B
C
#include <stdio.h>
|
|
|
|
int evenFib();
|
|
|
|
void main() {
|
|
printf("%d\n",evenFib());
|
|
return;
|
|
}
|