initial commit

This commit is contained in:
2026-07-18 20:34:55 +02:00
commit 59ad004c96
474 changed files with 226635 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#include <stdio.h>
#include <assert.h>
int fg[15] = {1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610};
int main(void)
{
int fl[15] = {1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610};
int sg = 0, sl = 0;
for(int i=0; i<15; i++)
{
sl += fl[i];
sg += fg[i];
}
assert(sl == 1596);
assert(sg == 1596);
printf("%d %d\n", sl, sg);
return 0;
}