aoc

Thing1's 2025 aoc
Log | Files | Refs

commit 7fabc23afc0eb596a0f2a1bb380bd3ae3522dda8
parent 5119833f6a8e73d814353d5314346fcbd8d54299
Author: thing1 <thing1@seacrossedlovers.xyz>
Date:   Thu,  4 Dec 2025 16:47:25 +0000

finished 4a

Diffstat:
A4/4a.c | 45+++++++++++++++++++++++++++++++++++++++++++++
A4/4b.c | 0
A4/Makefile | 11+++++++++++
A4/input | 135+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 191 insertions(+), 0 deletions(-)

diff --git a/4/4a.c b/4/4a.c @@ -0,0 +1,44 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +char grid[150][150]; + +int +loadgrid(FILE *f) { + char line[150] = {0}; + int i; + for (i = 0; fgets(line + 1, 149, f); i++) { + line[strlen(line + 1)] = 0; + memcpy(grid[i + 1], line, 150); + } + return i; +} + +int +countadjacent(int x, int y) { + int adjacent = 0; + for (int i = -1; i < 2; i++) { + for (int j = -1; j < 2; j++) { + if (grid[i + y + 1][j + x + 1] == '@') + adjacent++; + } + } + return adjacent - 1; +} + +int +main() { + FILE *in = fopen("input", "r"); + int lines = loadgrid(in); + int total = 0; + + for (int y = 0; y < lines + 1; y++) { + for (int x = 0; x < strlen(grid[y] + 1); x++) { + if (grid[y][x + 1] == '@' && countadjacent(x, y - 1) < 4) + total++; + } + } + printf("%d\n", total); + +} +\ No newline at end of file diff --git a/4/4b.c b/4/4b.c diff --git a/4/Makefile b/4/Makefile @@ -0,0 +1,10 @@ +CFLAGS=-ggdb -fsanitize=signed-integer-overflow +LDFLAGS=-fsanitize=signed-integer-overflow + +all: 4a 4b + +4a: 4a.c +4b: 4b.c + +clean: + rm 4a 4b +\ No newline at end of file diff --git a/4/input b/4/input @@ -0,0 +1,135 @@ +@@@@@@@@@@.@....@@@..@@.@@.@@@@@.@.@@@@@@@..@.@.@@@@@@@@.@@@@@.@@@@..@@@..@@..@@@@@.@@.@@@@@..@.@@@@@@@@@.....@..@@@@@@.@@@..@...@..@@@ +@.@@.@...@.@@.@.@@.@.@.@..@.@@@@@.@@..@..@..@@@.@..@.@@@..@..@@@.@..@...@@@.@@@.@.@.@@@@@@@.@@@@@.@.@@@@@@@@.@@.@@@..@@.@@..@@..@@..@@. +.@@@@@@@@.@.@.@@.@@@@@@@@@@@.@.@@.@@....@.@@...@@@@@@@.@@.@..@..@@@@@@@@.@@@.@..@@@@@@@@@@@@.@@@@@@@..@.@@.@.@..@@@@@@@..@@@..@@@.@@@@@ +@@@.@.@@.@@@@@.@.@.@...@.@.@@@.@.@..@@.@.@@@@@.@@..@@@@@@@.@@@@..@@..@@..@@.@.@@@..@@@@@@@@.@@@.@@@@@@@@.@@@@@@@@@@.@..@.@@.@@@@@@.@.@@ +@@@@......@@..@....@..@.@.@@.@@@.@@@@.@@@..@..@@@..@@@.@@@@..@@.@@@.@@@..@@@@@@@..@@..@@.@.@@.@.@@.@.@@@@@@@@@..@...@@@@@@@..@.@..@@.@@ +@@@@@.@@@@@@....@@@@@..@@@@@@@@@@@.@@@..@@.@@@@@@@@.@@.@@..@@.@@@@@@@@@@@@@@@@..@...@@@...@@.@.@@.@@@..@@@.@@@..@@@@..@....@@..@@@@.@@. +.@@@@@@..@@@@@..@@@@.....@.@@@.@@@@.@@..@@@.@@@@@@..@.@@@@.@.@.@.@@@...@.@@.@.@.@@@.@@..@@@@@@@.@.@@.@@@@@.@@@@@.@@@..@.@@@@@@@@..@@@@@ +@@@.@@@@@@@@@@.@@@@@.@@.@@@..@.@.@..@@@@@@@@@.@@@@@..@.@@@.@@@@...@@.@@.@@.@@@@@..@@@@..@@..@....@@..@@@@@.@.@.@.@@..@@..@.@@@..@@@..@@ +.@@@@.@.@@@@@..@@....@@....@@..@@@@.@@@@@....@@@.@.@@@@@@.@@@.@@@@.@@@@.@@@@@@@.@..@@@@@@@@.@.@@.@@.@@@@...@...@..@.@.@@.@..@.@@@@@@@@. +@..@..@@@@.@@@.@..@....@.@@@..@...@@@.@@@@@@@@.@@.@@.@.@.@@@..@@@@@.....@@.@..@@@@..@@@.@.@..@@@.@@@@@..@@@@@...@@@...@@.@.@.@@@...@@@. +@@@@@@.@@@..@..@.@.@@....@@..@.....@@@@.@@@.@@@@@@@...@@@.@@@@@@...@.@@@..@@@@@@@@@@...@@@.@@@@@@@@@@.@@@@.@...@@@@@@.@@.@@@@.@@@@..@@@ +.@@@@..@.@@.@@.@...@.@@@@.@@@.@...@@@@@.@.@.@@@....@@@@@@@@.@@@@.@@.@@@.@.@..@@@@@@.@...@@@......@@@@@@@@@..@@@@.@@@@.@@@@@@@.@@.@.@@@@ +...@@@@.@.@@.@..@.@..@..@@..@@@@@@@@@.@.@@@.@@@@.@@.@@@@@.@..@@@@..@@@..@@..@.@...@@@.@.@.@.@..@@@@.@@......@@@@@@.@@@@.@@@@@@@@@.@@@@@ +@..@@@@.@@@@@@@@.@@....@.@.@@@@@@@.@@@.@.@@@.@.@@@@.@@.@@@@.@..@@@.@@@@@@@...@@@@.@@@.@.@.@@.@.@.@@@@@@.@.@.@....@@@@@@@@@@.@@@@@@@@.@. +.@@@.@@@.@.@....@@@@@....@@@@@@.@@@@@@@@.@.@@@@@@@@@@@.@@@@@@@@...@..@@..@@@.@....@.@@@@.@@.@@@.@@...@@.@@@@@@@.@@@.@@..@..@@@@@.@@..@@ +.@@.@@.@...@@..@@@@@.@@@@@..@@.@@.@@@.@@.@@.@.@@.@@@.@..@@@..@@@.@.@.@@...@.....@@@.@@@@@@.@@.@@@..@@..@...@@@@..@@@..@@.@@@.@@@.@.@@@. +@@@@@@.@@..@@@@..@@...@@..@@@@.@.@@..@..@@@.@.@@...@@@.@@@..@@@@@@.@@..@.@..@@@@@..@.....@@..@@@@@@@@..@@....@@@..@@@..@.@@.@@@@.@@@@.@ +.@@@..@@.@@@@@@@@.@@@...@.@@@@@@..@.@.@@@@..@@@@@@@.@@.@@.@@.@@@.@@..@@..@.@..@@@@.@@.@@@@..@@@@.@@@.@.@@@@@@@@@@...@.@@.@.@@@@@@@.@@@. +.@@@@@@.@@@@.@@@@.@@@.@@.@.@@@....@@..@@@..@..@@@@@.@@.@@@...@..@@@.@.@@.@.@@.@@.@..@@@@@@@@.@..@@@.@.@....@.....@@@.@@..@@.@@.@.@@@@@@ +@@@.@@@@@@@@@.@.@@.@@@..@....@@.@@@..@@@@.@.@.@@..@@@@@@@@@@..@@.@.@@@@@@@.@@@@..@.@....@@@@..@@.@@@@@@..@@@.@@@@..@@@@.@@..@@@@.@..@.. +@@.@.@@.@..@.@.@@@@.@@.@.@...@@@....@@.@@@@.@@..@@@@@@.@@@...@.@.@..@.@@@@@.@@.@@@@.@@@@@@@@.@@@.@@@@@@@@@@@.@.@@@@@@.@@@.@@@.@@..@@@@@ +@.@@@..@@@@.@..@@@.@@.....@@.@.@.@@@@..@..@@@@@.@@@..@...@@@@@@@@..@@@.@@..@@.@@@@@@@@@.@@@@.@@...@@@@@@.@@...@@@@@@.@.@@@@.@@.@@...... +@.@@.@@@@@@@@@@@@@@@@...@.@...@@@@....@..@@@@@.@@@@.@@@.@.@@@@@@@@@@@.@@..@....@..@..@@@..@.@@@@@@@@@.@@.@.@@..@.@@@@@.@@@@@.@.@@@@@@@@ +@@@@@@.@.@@@@@@@..@@.@..@@.@..@.@..@@@@@@@@...@@@.@@.@@@@@@.@@@.@@..@@.@@@@@@..@.@@..@.@@@@.@.@.@@@@.@@.@@@@@.@@...@@.@..@@@.@@@@@@.@.@ +@...@.@@.@@..@@.@...@@@@@.@.@@@@@..@.@@@@.@@..@...@@..@@..@@..@@.@.@@@@.@@@@.@..@@@@@.@...@.@@@.@..@..@.@@..@@@@@.@.@.....@@@.@@....... +@@..@.@@@@@.@@@@@@@..@....@..@@@@@@@.@@@@.@.@@@..@@@...@.....@..@@@.@....@@.@@@@@@@@.@@@.@@@@@@.@@.@@@@@@@.@..@@@@@..@@@@@@....@@@.@@@. +@@@..@...@@@@.@@@@@@.@@@.@@@..@@.@@@.@@@.@...@@.@@.@.@@@@@@.@@@.@@@...@.@..@@@@@@@@@.....@...@@..@@@.@@.@@.@@@@@.@.@.@@.@@@.@@@@@...@.@ +@.@.@...@@@.@@@@.@.@@@@.@@@@@.@@.@.@@@@@...@@@.@..@@@@@@@@@@..@@.@@.@@.@..@..@@@@@.....@@@.@@@.@.@.@@@@@@@.@.@.@..@..@@@@.@@@..@.@@..@@ +@@@@@@@@@.@.@@.@@@@@@@@.@@..@@@.@.@.@..@..@@@@.@@@@@@@...@@@@..@@@.@@@@.@@@..@.@@..@..@@@@@@@@@.@@.@.@.@@.@@@@..@..@..@@@@@@@@@...@@... +@@@@@@@@@.@@.@.@@@.@@.@.@@@..@@@@@..@@@@@@@@.@@@@.@......@@@@@@...@@@@@.@@@@.@@.@@@@@@.@.@@@@.@..@.@@..@...@@@@@...@@@@..@.@@@@.@.@@@.@ +@@.@...@@@...@@@@@@.@@.@@@.@..@@@..@@.@.@@.@.@.@@..@@@.@@@.@@...@@@@@@@@@@.@.@@@@.@@.@@@@.@@@.@.@.@@@@@.@@@....@.@@@..@@.@@@.@@@.@@..@@ +@@.@...@@.@@@...@@@@@@.@..@.@@.@.@@.@@.@...@@.@@@@.@...@@@@@@..@@@.@@@....@.@@@@..@@.@@@@.@@@@@@@.@.@@.@@.@.@.@@@@.@@@@.@.@@@.@@...@@@. +..@..@@@@@@@@.@@.@@.@.@@@.@@.@.@.@@@@@.@..@@@@.@@@..@@@....@@@.@.@..@.@@@@@.@.@.@@@@@@..@..@@@@.@@.@@@@@..@@@@@@@@@@@@.@@@@@@@@@.@@@... +@.@@@@.@@.@.@@..@@@@@@@@..@.@..@@@..@@@@@.@@.@@@@@@@.@@@..@@.@@@.@@.@.@..@.@@@@@@.@@@.@@@.@@@.@.@@@@@..@@@@..@.@@@@..@@@@@@@@@@..@@.@@@ +@@.@@.@@@.@.@.@.@@.@@@...@@@..@@@@@@@@.@@@.@@@@@@.@@.@.@@@@@.@.@@@..@.@...@.@@..@@..@...@.@@@@@.@@@@....@@@.@@...@..@@.@@.@.@@@@@.@@@@. +@@.@@@@..@@..@@@@..@@..@@@..@@@@.@.@@@..@@@@.@@@@@@@@.@.@@@@@@@@@..@@.@.@@..@@@.@@@..@..@@.@@..@.@.@.@.@.@@@@@@@..@..@@.@@@@@@.@...@@@. +@.@@.@@.@.@@@@@.@...@..@.@@@.@@@.@@@@@@@@@@@.@@@@.@@@@@.@@@@@.@@@@.@.@@@@@.@.@@@@@@.@@@@@.@@.@.@...@@.@@@....@@.....@.@..@@@@.@@@..@@@. +@@@.@..@@@@@@.@..@@.@@@@@@...@....@.@@.@...@@@.@@@@@@@@@@@..@@@@.@@@.@@...@@@@..@.@.@.@....@@@@@..@@@@..@..@@@@@@@.@...@@@..@.@@@@@@@@@ +@.@.@....@@.@@@@@@@@....@@..@@@@..@@@..@.@@@@@.@@@@@..@..@...@@@.@@@@...@..@....@@.@.@@@.@.@.@.@@@@@@.@@.@@@@@.@@@.@@..@.@@.@@@@@@@.@@. +.@@@@..@@@@@@..@.@.@@@@..@@@@@@.@@@@@.@@@.@@@.@@.@@.@@@@.@@@.@@@@@@@@.@@@@..@@@@@@@.@@.@.@@@....@@@@.@@@@@..@@@@.@.@@@.@@@..@@@@@@.@@@@ +@@..@@@@@@.@@.@@.@.@@@...@.@..@@@.@.@@@.@..@@@@.@..@.@...@@@.@@@@@@.@@.@@@.@@@@@@@@@@.@@@@.@@..@@.@@@@@@.@..@...@.@@@@@@.@@@@@.@@@@@.@. +@@..@@@@@@.@@@@.@@@@@.@@@.@@...@@@@@.@@...@@..@.@.@@.@.@@..@.@@@@..@@@@.@..@@@@@@@@.@.@@@.@@@..@.@@@.@@@@@@.@@.@@@@@@@.@@.@@@@..@@@@.@@ +@.@.@@@@..@@@@@@.@@@@@@@@@@..@.@@.@@@..@@@.@@@@@@@.@..@.@@@@@@@..@.@@.@@@@@@@@@.@..@..@@@@@..@@@..@.@@@@.@@@@@@.@@..@@@..@@....@....@.@ +..@.@.@..@.@@@@.@@@@..@.@.@@@.@.@@@@..@.@.@@@..@@@@@@@@.@@..@@@@@@@@@@@@@@@@@.@@......@..@@@@@@@.@.@.@.@@....@@@..@@.@@@@..@.@@@@@@.@.@ +@@@.@@...@@@@@@.@.@@@@..@@@@@.@.@@@...@..@.@@@@@@@..@@@@@@@@.@@@.@@.@@..@@@@.@@@..@@@.@@.@@@@.@@@@@@@.@@.@..@@@.@@@@@@@@@@@@@@.@..@@@.@ +@.@.@@@@@..@.@@@@@@@.@.@@@@@....@..@@@.@@@..@.@..@@@@.@.@@@@.@..@.@@@@@@@.@..@...@@@@@@..@@@@@@@@.@@@....@@..@@@@@@..@@@.@.@....@.@@..@ +..@.@@@@@@.@@@.@@@@..@@@@@@@@@@...@.@...@@@@@@@.@@.@@@@@@@@@@@..@@.@@@@@@@.@@@...@@@@@@@@..@@@@@@@@.@.@@...@@..@@@..@@.@.@..@.@.@@.@@@. +@...@@@@..@.@.@@..@..@..@.@@.@@.@@@@.@..@.@@@@@..@.@@.@@...@@@.@@@@@.@@...@@@@.@.@@@.@...@@@.@..@@@@...@@.@@@.......@@@@@@@@.@@@@@@.@.. +..@..@@..@@.@...@@@.@@@..@.@@@.@...@@..@....@.@@.@@.@@@.@@@@@@@.@@@@@..@@.@.@.@@@...@.@..@@.@@@@@@..@@@@.@@.@@@@@.@.@...@@@@@@@@@@@@@@. +@@@..@@.@@@@.@..@@@..@..@@@@@@@@@@@.@@@@..@.@@@@.@@@.@@@@@.@@..@@@@@@..@.@@@@@@.@@@@@.@@@@@@@@@@....@@.@.@.@@.@.@.@@@@@@@.@@@@@@@@.@@@. +....@@@.@@.@.@@..@@.@@.@.@..@.@...@@@@@...@.@@..@@.@@@@@@.@@@@@.@@...@@@..@..@@..@@@@@@.@@@.@@..@@@@@.@.....@@@@@.@.@.@..@.@@..@@@@@@@. +@@@..@.@@@@.@@@.@@@@@@.@.@..@@@@..@.@@.@..@@@.@@@@@@@..@@...@@@@@.@@.@@...@@@@@@..@.@@.@.@@.@@@..@@@@@@@.@@@....@.@@.@@@@..@.@.@@.@@.@@ +..@@.@@@@@@@@@@@@@@.@@@..@@@.@.@@@@..@@@@.@@@.@...@@@@@..@.@@.@...@@@@...@@@..@@@.@.@@.@.@@.@......@.@@@@@@@@@....@@@.@...@@...@@@@@@@@ +@.@@@@@@.@...@@@@.@...@@.@.@@@@.@.....@@@.@.@.@@@.@@.@@@@@@.@@..@@@@@.@@..@.@@@@.@@@@.@@@@@@@@....@.@.@@@@.@..@..@@@.@.@.@@@..@@@@.@@@. +.@..@@@@@@.@@.@@@@@.@@@@@@@@@.@..@@..@@.@.@@@@@.@@@@@@..@@@.@@@@@...@@@@@@@.@@.@@.@@@@@..@..@@..@@@.@.@@@@.@@@@@@@@@@@..@@.@@.@...@@@@@ +@@@....@...@@.@@@@@@.@@@.@@@.@....@@.@.@@.@@@.@.@@@@@@.@@@@@@@@..@.@@@@@@@@@..@@@.@.@.@.@.@.@.@..@...@..@@@@.@.@@.@@@@@@@@@@.@@@.@@@@@. +@@@@.@.@@@.@@@@@@@@@.@..@@@@@@@@@.@@.@@@@@.@.@.@..@.@@.@@@.@@@@@@@.@.@.@@@.@@.@.@..@@.@@.@@@@@@@...@@@@.@.@.@@@.@@@@@@@..@@.@@.@@@@.@@@ +@..@....@@@@.@.@.@.@@@@@@@.@@.@@@@.@@@@@@@@@.@@@@@.@@@@@@@@@.@@..@.@@@@.@.@@@@.@@.@.@@.@@@@@..@.@.@@@@@.@@@.@@@@@.@@@@@@.@@..@@@.@@@..@ +@.@.@....@@@@@.@@@@@.@@..@..@@.@@@..@..@@.@@.@..@.@@.@@@@@.@@@.@@.@@.@@@@@@@@@@..@.@.@.@@...@@@@@.@@.@@@@.@.@..@@.@.@@@@@.@@@@..@.@@.@@ +@@.@@@@@@.@.@.@@@@@..@@@@.@..@.@..@@@@..@.@...@@@@@@@@.@.@@@@@.@..@@@@@@@@.@@.@@@@@....@@@@@.@@..@@@..@@@@@.@@.@@@@@@.@.@@...@@@@@.@@@. +.@.@@@@@...@@@@@..@@@...@..@@..@@@@.@@.@..@.@.@@@.@@....@@@@@@@..@.@@.@@..@......@@@@@@@.@@.@@@@.@...@.@@@@@@@@@.@@@..@@@@@@@..@..@.@@. +@.@@.@...@@.@@@@.@@...@.@.@@@@@@@@@....@.@.@@@..@..@@..@@...@.@@@.@.@@@@@@@@@.@..@.@.@@..@@.@@@.@@..@@.@@.@@...@@@@@...@@@@@@@.@@@@.@@. +.@@@@..@@@.@@@@@.@@.@@.@@@.@@.@@@@..@@@.@@.@..@@@...@.@@@..@.@..@@@..@.@@.@...@@@@@.@@@.@@@@@@.@@@.@@@@@.@..@..@...@@.@@@..@@@..@@@.@.@ +@.@@@@.@@.@@.@..@@...@@@@@@@@@@.@@@.@@@@.@@@@@.@.@@@@@@@@@.@.@.@@@@.@@..@.@@@@@@.@@@@@@@@@...@.@.@.@@.@@.@@..@@@..@@.@@@.@.@@@@@@....@@ +@....@@.@.@@@@@...@.@@@@@@...@@..@.@.@..@@.@@..@...@@....@@.@@......@@@..@..@@@@@@@@@@@@@@@@@@..@..@.@@@@.@@..@.@@.@@@.@@@@@..@@@.@.... +@@@@.@.@..@@.@@@@@@.@@@@@@.@..@@@..@@.@@@@..@.@@.@@@@....@@.@..@@@.@@...@@@.@@@.@.@.@@@.@.@@@..@@.@@@@@...@@..@.@@@@@.@@@.@@.@@.@@@.@.. +@@@.@@@@.@@@@..@.@@@...@@@@.@.@..@..@@@..@@..@@@.@.@@@@@@..@@@.@@@@@.@@@@@@.@@@@@.@...@...@@@.@@.@@@@@@.@@@@@@@@@@@@@@@.@.@..@@.@.@.@.. +@.@@@.@.@....@@@@@@.@@@@@@@@@...@@@@@@@..@@@@@.@.@@.@@@@.@.@@@@@@.@@.@@.@@@@@@@.@@..@@@.@@...@@@.@.@@.@@..@@@@@@.@@@@.@@@@@.@@@@.@..... +..@.@@@@...@....@@@@@@@@..@..@@@@.@.@..@.@@@@..@@@.@@.@@@.@@@@@@@@@.@.@..@@..@@.@@@.@@.@.@@@@@.@@@@@@@@@.@@.@@@@@.@.@@@..@@@.@@@@@.@@@. +.@.@.@.@@@@@@.....@.@..@.@@@@@@.@..@.@@.....@@@.@@@@...@@.@@@.@@@.@@@@@.@@@@.@..@.@@@@@@..@@.@@.@@@@@@@@@@@.@..@@@..@...@@.@.@@.@@.@@@@ +@@...@@@.@@@@....@@@@.@@...@@..@@@@.@@@@@@@..@@@...@@@.@@@.@@@..@@@@@@@.@@.@@@@@@.@.@..@@.@@@@..@@@.@@..@.@.@@@@@@.@@@@@@@@@@..@@.@@@.@ +@@@.@...@@@@..@@@@@.@@@.@@@..@@@@.@@@@..@@...@@@@@@@.@@..@@@@.@@.@..@@@@@@.@@...@@@@.@@@@@@@..@..@..@@.@..@@@@.@@@.@@..@@@..@@@.@@.@@@@ +@@....@.@..@@@@@@@@@.@@@.@@.@.@..@@.@@.@@..@@@@@@@@@@@@@@@....@.@@...@@@@.@@.@.@.@@.@@@@.@@..@@@@.@.....@@.@...@..@.@.@@.@@.@.@@@.@@.@@ +@@@@@@.@.@@@@@@..@..@.@@@....@..@@@@.@@@@@@@@@@.@.@@.@@@@.@@@@@...@@@..@.@.@..@..@@.@@@.@@@.@@..@@..@@@@.@@@@.@@@@@@@@@@@@@@@.@@..@@@.@ +@@@..@@@@.@@..@.@.@.@.@.@@@@@@@@.@..@.@@.@@@@@@..@@@.@@...@@@@@@@@@.@@.@@@....@@....@..@...@..@@@...@@.@.@@.@.@@@.@.@@@..@.@@@@.@@@@@@@ +@@@@@@@..@@@@.@.@.@@@.@@@......@@@..@..@..@@.@.@@..@@@@@@@.@@..@@@@.@.@@..@.@.@@.@@.@@@@..@@@..@@@@@@@@@@@@@..@.@@.@.@@@@@@@.@.@@@....@ +@@@@@.@@..@@@@.@..@@@@@@@@@@@@@@@@@.@@@@..@..@@@@@@.@@@..@.@@.@@..@@@@..@@.@..@@.@@....@@@.@@.@.@@..@@@.@...@.@.@@.@@....@@@@@@@@@.@@@@ +@...@@@@...@.@..@@.@@@@@@@..@@..@.@.@@..@..@@@...@@@@@@@@@.@@@@.@@@@@@@@@@@..@@@.@@.@@@@.@.@@..@@.@@@@@@.@@.@@....@.@@@@@@@@@@@@@.@@@.. +..@.@@.@@@@@.@@@.@@.@..@@@@.@@@@@@@@.@@@@@@@@....@@@@.@..@@@@@.@@@..@@@@@@@..@@@@@@@.@..@@@@@@@.@@@@@@@@@@@@@@@@@.@..@@@@.@...@@@@.@... +.@.@@@@@@@.@@@@@....@@@.@..@@@..@@@@.@@.@@.....@@@@.@@.@@@@@.@..@.@.@@@..@@@..@@@...@.@@@@.@@.@@@@@.@@..@.@.@.@.@.@.@@@@@@@@.@..@..@@.@ +@@.@..@@@.@@@@@@.@@@.@.@.@@.@@@@@@@@@@...@@...@@@.@.@@@@.@@@@@@@@@@..@@@@@.@@@.@@@@@@.@....@@@@@.....@@@....@@.@@.@@...@.@.@....@.@@@@. +@@@@@@@@@..@@@.@....@@@@@@..@@@@...@..@@@@@..@@@@@...@@@@.@..@.@..@.@@..@@@@.@@@@@...@@.@.@.@@.@.@.@.@.@.@@.@@@@@@..@@...@@@@.@@@@.@@@@ +@..@@@@.@..@@@.@@.@@@.@@@.@@.@@@..@@@@@@@@@@@@@...@.@@.@@@@@@@@.....@..@@@@@.@@.@@...@@.@.@@@@.@@@@..@.@@@.@..@@....@.@@.@@@@.@@@@..@@@ +.@@@@@@..@@@.@@..@@@@.@@@.@@.@.@.@@..@@@@@.@@..@.@@@@.@@.@@.@@..@.@@.@@.@@@@.@.@@@@@@@@@@@.@@.@....@@@@.@@@@@@...@@..@@@@@.@@@.@@@@@@.. +.@@.@..@.@@.@.@.@@..@@@.@@@@.@@@@@..@@....@..@.@@.@@.@.@@@@......@@@.@.@@@@@.@.@@..@@@@@.@@@@@..@@@.@.@...@.@@.@@@@@.@@.@@@@@@@.@@@@@@. +@@@@@@.@@@@...@@..@@@@@.@..@..@.@.@.@...@..@@.@.@..@.@@.@.@@.@@.@@..@@..@@.@@..@@@.@@..@@@@.@.@@@@..@..@@@@.@@@@@@@.@.@.@@@@.@@@.@@.@@@ +@@@@@@@@@.@@@.@@...@.@@.@@@@...@@@@@..@@@@@@@@@@@.@.@@..@.@.@.@@....@@..@@@@@@...@@.@.@@.@.@@@@@..@@@@.@@.@.@@@@.@..@@@@@@@@@.@..@@.@@@ +.@.@.@@..@@@@@@.@.@@.@@..@@@@@@..@@@@..@..@@.@@@@@@@.@@@@..@.@@.@@@@@@@.@@@@..@@.@@@@@@..@@@@..@@.@.@@@@.@@.@.....@@...@@@@@@@.@@@.@@@@ +@@@@@@.@@@.@@@....@.@@@@@@@.@@@@@@.@@@..@@@@..@...@.@@@..@@...@@@..@.@@@.@.@.@@@@.@@.@@.@.@..@.@@.@..@@@.@@.@@@@@@.@@@@@.@@@@.@@@@@@@.@ +.@.@@@@@@@@@...@.@@.@@@@..@@@.@.@.@@@@@.@@@@@@@@@@@@@.@.@@@@@.@.@@@@@@.@.@.@@.@@@@@@@@@@@@@@@@@@@....@..@.@..@@.@@@@@@.@.@...@@@..@@@@. +.@..@.@@@.@@..@@.@@@@.@.@.@...@@@@@@@@@@@..@..@@.@@@@.@@..@@@.@@..@@.@@.@@@@@@@@@@.@@@.@@.@.@@@@.@@@@@@@.@@..@@@.@@..@@@@.@@.@@.@@.@.@@ +@@@@.@@@..@@.@....@@@@@@.@.@@@@.@@@.@@@@.@.@@.@..@.@@.@@@@@@@@@..@@@.@@@.@@@@@@@@.@@@@@@@.@.@@...@@@.@@@@@.@...@@.@@@@@@@@..@.@@.@@..@. +@@@.@.@@.@@..@..@@@@@@..@@@...@@@@@.@.@@@..@@@.@@.@@@.@.@..@@..@@@@@@@.@@@....@@.@@@@@@.@.@@.@@.@.@@@..@@..@@@@@@.@@@@.@@@@.@....@.@@@@ +.@@@@@.@@@@@@@.@.@@@@@@.@..@..@@.@@@@@.@@@@..@.@.@@@.@.@.@@.@.@@@.@@@@.@@.@@.@.@@.@@@@@..@@..@@@@@.@@...@@@@@@@@...@.@@@.@.@@@.@@..@@.@ +@@..@.@@.@.@@@@@@@@@@.@.@.@..@@@@@@@@.@@@@@@.@@@@@@@.@@.@..@@.@@@.@@.@@@.@@....@@@@...@.@@@.@..@@@@@@@@@@@.@.@@..@.@.@@..@@@@@.@@.@.@@@ +@..@@@..@@@.@@@@@.....@.@.@@@@@.@@@@@.@..@.@..@@.@@@@@@@@@...@.@@....@@.@@@@.@@@@@@@@...@@@.@@.@@@@@..@@..@.@@@@@@.@...@@....@.@@..@@.@ +..@@@.@@...@@@.@.@@@..@@@@@.@@.@..@@@.@.@@@@@.@@@..@.@@.@@@@.@@..@..@@@...@@@@.@@..@.@..@@.@@@.@@..@@@..@@..@...@@..@.@.@..@..@@@.@@@@@ +..@@@...@.@@.@@.@@.@@@@@@@@.@@..@@@@@@@@.@@...@..@@@.@..@.@@@@@@@@@@@.@@@.@@@@@....@@...@@@@@...@@.@....@@@@@@@..@@@@@@.@....@@@@..@.@. +@@.@@@@..@....@@.@..@@.@.@..@@@@@@@@..@@@@@@@...@.@@@@@@@@@@.@@@@@@@@.@..@.@@@.@.@@@@@@@.@@.@@@.@@@.@@@.@@@@@@....@@@..@...@@@.@.@.@..@ +@@@@..@@@@@@@.@@@...@.@@@@@@@@@@..@@.@.@@.@.@@@@@@..@@.@.@.@.@@@...@@@.@@.@@@.@@@.@@@@@.@..@.@@@@@@@@...@@@..@@.@@@@.@.@@.@@@@...@@@.@. +@@.@@@@@@@@@.@@@@.@.@@.@@@@@.@@@.@@@.....@......@@@.@.@@@@@@@@.@@@@@..@.@@@@..@@@@@@..@.....@@@@...@@.@@@@.@.@@.@@@@@@@@.@@@.@..@...@@@ +...@..@.@@@..@@@@@.@@@...@@@@.@.@..@@@@@@@..@@@...@@@@.@@@..@@..@.@@....@@@@@@@..@@@@..@@@@@@.@@.@@.@@@@.@@@@...@@...@.@.@@@@..@@.@@@.. +@@@@@@.@.@..@@..@.@.@@..@@@@@@.@@.@@...@.@@@.@@..@....@.@.@@@@.@@.@@..@@@@@.@@@..@.@..@@@.@@@.@@.@@.@.@..@.@@@@.@.@@@@.@@@.@.@.@.@@@.@. +@.@@.@@@.@@@@@@@@@@......@@..@@.@...@@@.@@@.@@.@@@@@@.....@@@@@@...@.@..@.@@@@.@@@.@@@@.@@.@.@@@@@.@@@...@@@@@@@@@.@@.@@@@....@@@.@@.@. +@@@@.@...@@@....@@@.@@.@@@..@@@@.@.@@@..@@@.@.@.@@@.@@@@.@.@@.@@@...@@...@@@..@.@@@.@@@.@@@.@@@..@@..@.@..@@.@@@@@.@.@@.@@@@@@@@@@@.@.@ +@@@.@.@.@@@.@@.@@.@@@@@...@@....@@@@.@@@@@@..@@@.@@..@@@@.@@@...@@..@.@...@@@@@@@@.@.@@@@@@@@.@.@@.@@@@@.@@.@.@.@@@@.@.@.@@@@@.@.@@@@@. +.@.@@@@.@@.@@.@.@@...@.@.@@@.@@@@.@@@@.@@@@@@@@@.@.@@.@@@@...@@.@.@@@@@..@...@.....@@@@@.@@@.@@@.@@@@@@....@.@.@@@@@@...@..@.@.@@..@@@@ +@@.@@@@@@@@..@@@@@@.@@@@@@@@@@@@.@@@@@@@.@@@.....@.@@.@.@.@@@@..@.@@@@@@@@@@@@@@@.@@@@@.@@.@@.@@...@@.@@@..@@@@@@.@@.@@.@@@@@.@@@@@.@.@ +@@.@@@..@@.@.@@@@@.@.@@.@@@@.@@@....@@@@.@.@@.@@@@@.@.@.@@@...@.@@@@@@@@@@@....@.@@..@..@@@@.@@@@@.@.@@@@@@..@@@@.@@.@@@@@.@@.@@@@@@@@. +....@@.@@@@.....@.@@.@@@@@@@@@@.@.@@.@..@...@@.@.@@@@@...@....@@@.@.@@.@.@@@@@@@@@@@@@@.@@@@@@@.....@@@.@@.@..@@...@@...@@...@.@@.@@@@@ +@@@@@.@@@@.....@@@@.@@@.@@..@@....@@@@.@@.@.@.@.@@.@.@....@.@.@@..@.@@@....@...@..@.@@@..@@@....@@@@.@..@@@.@@@@.@.@.@.@@...@@.@@@@.@@. +@@.@.@@.@@.@.@.@...@@.@@@.@@@@.@..@@.@@.@.....@@@@.@.@@@@@@@..@.@.@@@@@@@@@@.@@@@@@.@.@..@@.@@@@@@.@@.@.@@.@..@@@....@@@@@@.@.@..@..@@@ +@@@.@@@@@@@@.@.@...@@@@.@.@.@..@@@@.@....@@.@@.@@@@@@@@@@.@@@@@.@@@@@..@@@@.@..@@@..@@@@@@@@@@@@@@@@@@@@@.@...@.@@.@@..@.@@@@.@.@.@@@@. +@@.@@...@@.@@.@.....@@@@@@.@@@@@...@.@@@@@..@.@@@.@@@..@@@.@@.@....@@...@@.@.@...@...@@..@.@@@@.@@@@.@.@@@@@.@.@...@.@..@@@.@@@..@@.@@@ +@@@@@@@.@@.@@@@@...@@@.@@@.@@.@@@..@.@.@..@@.@@@.@@.@@@.@@@..@.@.@@.....@@@.@@@@.....@@@@.@.@.@@@@@@@@@..@@.....@@@.@@@.@@.@@.@.@@..@.@ +@@..@..@@@.@.@@@..@@.@@@@.@@@@@@@@@@@@@@@@...@..@.@.@.@.@.@@@@@@@..@.@@@@@@..@.@@@@@@@.@@.@.@@@@.@..@.@@@.@@@.@.@@@@@.@@.@.@@@@.....@@@ +.@@.@@@.@@@.@@@@.@@@.@@@@.@@..@.@@@@.@@@@@.@@.@.@..@@@@.@@@@@@@..@@..@.@@@@@.@.@@@@@.@@@@@@.@@@@.@@@@@@@@@.@..@@@@.@@@@@@@.@@@@@@@@@.@@ +@@@@@@..@@@@@.@@@.@@.@@.@@@@@@@@..@@@@.@@@.@@@@...@..@@@@@..@@.@...@@..@@@@.@@.@@@.@.@@@@@@@.@@@@.@@@..@@@..@.@@@@@@...@.@.@@@.@@@@.... +@.@..@..@.@@@@@@@.@.@@@@.@@@@...@@@@@..@@@@@.@@.@@@@@@@@@..@@@@@@.@..@@.@...@@@..@@@@@@.@..@@@.@.@@..@@@@@@@@@@...@@@@@@@@@.@@@@..@@@@. +@@@@.@.@@@.@@.@.@@@@@.@.@@@@.@..@@@.@..@..@@@@@.@.@@.@@@@@@@@....@.@..@@@@@@@@.@@........@......@@.@.@@.@@@@@@@.@.@....@.@@@@@@@@@@.@@@ +....@@@.@@@@@@...@@@@@@@@.@@@@.@@....@@@...@@@..@.@@@...@.@..@..@@.@@@@@@.@@.@@.@..@.@.@.@@.@@@@.@..@..@@@.@@@.@.@@@.@@..@..@@..@@@@.@@ +.@..@@@.@@@.@.@@..@@@.@@@.....@@@@.@@..@@@.@@@@@@.@@@@.@@@@@@@...@..@@@.@.@@@@@@.@.@@...@@@...@@@@.@@.@@@@@@.@@@.@@..@@.@.@@@.@@..@@.@. +.@..@..@@..@@@.@@@.@.@.@@.@.@@...@@@@@..@@@@@.@@@@...@@@@@..@..@@@.@.@@@@@..@..@@@@@.@@.@@.@.@..@@@@.@@@@...@@@@.@.@.@@.@@@@@@@.@@.@@.. +..@@@@@.@...@@.@@.@@.@.@@...@@@.@......@.@.@@@..@@..@@@@..@@@@@@@@@.@@@..@@@@@@@@@@.@@@@.@@.@@@.@@@...@@@...@.@.@@@...@@@@@@@@@.@@.@@@@ +@..@.@@@@@@@@@@..@..@@.@@.@@..@@@@@@@@@.@@@.@@@@@@..@..@@@@@.@.@@@.@@@@@@.@...@@@.@@@@.@@@@@.@@@..@@@@@.@.@@..@@@@...@@.@@@@@@@@@@@.@.@ +.@..@@@@@@...@@@@....@.@@.@..@@..@@..@...@@@.@...@@.@.@@@@@@@@@.@@@@@@@@....@@.@@@@.@@...@@@@..@@.@@....@.@.....@@@@.@@...@@.@@@@@@...@ +.@.@.@@.@@@@.@.@@.@@@..@@@@@@@@@..@@.@@@@.@@@.@@@@@@@@@@@@@...@@@@@.@..@@@@@@@.@@@@@...@...@@...@@@..@..@@@@@@@@@.@@.@@@@@...@..@..@@@. +.@.@.@@..@@@@@..@@@@@@...@@.@@@@@@.@@..@@@@@@......@@.@@.@@@@.@@.@.@.@.@..@.@.@@@@.@.@@..@@.@..@@@@....@.@.@....@@...@@.@@..@@.@@.@.@@. +@@@@@@..@.@@..@@......@.@@.@@..@..@@@@.@@.@@@.@@@@@@.@@@@.@.@@@@@...@@.@@.@@..@@@.@@.@@@@@@.@@@@..@@...@@.@@@..@@@@@@...@@.@..@@@.@@@.@ +@@@@.@@@@@.@@@.@.@@@.@@..@@...@@@.@.@@..@..@@@..@......@...@.@@.@..@...@.@@@@.@@@@.@.@.@@@@@@...@...@@@.@@.@....@@@@@@@@@.@..@@@@@.@.@@ +@.@.@@@.@@.@@@@@@@@@.@@@..@@@@@@@.@..@@..@.@..@...@@@@@@@.@.@@@@@.@.@.@.@.@.@@@@.@@@.@@.@@@@.@@@.@@@@@@...@.@@.@@..@@@@@@..@.@@.@@@.@@@ +@.@.@@.@.@@.@@@@.@..@@.....@@@.@@@@...@@@@.@@@@@.@.@..@@..@@@.@@.@@@.@@@.@@@@@@@@.@.@...@@@@@.@@@@@..@.@.@@.@.@..@@@.@@.@@.@@.@..@@.@@@ +@.@@@@@.@@@@@.@@.@.@@.@@@@@.@.@@@.@@@@@@.@.@@@.@@@@@@@.@.@@@.@@@@@..@.@@@..@@@@@@.@.@@@@@@...@@@..@@@..@@@.@.@@@@....@@.@@.@.@@@..@@@@. +@.@@@@.@...@.@@..@@.@@.@@@@@@@@@...@@@.@@@@@.@@@@@@@@@@@.@.@@@@@@@@.@.@..@.@@@@.@.@@.@@...@.@@.@@@@@.@.@.@@@@@@.@@@@..@.@@@@@.@@@..@@@. +.@.@@@@@.@.@@@.@@.@@..@.@..@@@@@@@@@..@.@@@@.@@@.@...@@@.@@...@....@@@@..@@.......@@.@@..@.@@@@@..@@..@@@..@@@.@..@...@@@..@@@@.@@@@@@@