summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-rw-r--r--2021/day13.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/2021/day13.c b/2021/day13.c
index 9635616..3e60177 100644
--- a/2021/day13.c
+++ b/2021/day13.c
@@ -47,4 +47,10 @@ int main(void) {
 			first = 0;
 		}
 	}
+	for (int y = 0; y < h; ++y) {
+		for (int x = 0; x < w; ++x) {
+			printf("%c", (paper[y][x] ? '#' : '.'));
+		}
+		printf("\n");
+	}
 }