From 638d55d4894add9e39b9289c25359cb4649fc781 Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Mon, 20 Oct 2025 17:58:23 +0900 Subject: [PATCH] 20251019 baekjoon --- code_study/Baekjoon/ts/2558.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code_study/Baekjoon/ts/2558.ts diff --git a/code_study/Baekjoon/ts/2558.ts b/code_study/Baekjoon/ts/2558.ts new file mode 100644 index 0000000..eae3933 --- /dev/null +++ b/code_study/Baekjoon/ts/2558.ts @@ -0,0 +1,3 @@ +export {}; +const input = require("fs").readFileSync(0).toString().trim().split('\n').map(Number); +console.log(input[0]+input[1]); \ No newline at end of file