From 9961221b9c17d960a2daa7cc643d0dda8d2428d5 Mon Sep 17 00:00:00 2001 From: jaykxo Date: Thu, 11 Sep 2025 18:50:24 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Solved:=2011382=20=EA=BC=AC=EB=A7=88=20?= =?UTF-8?q?=EC=A0=95=EB=AF=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...82_\352\274\254\353\247\210_\354\240\225\353\257\274.py" | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 "jaykxo/week01/11382_\352\274\254\353\247\210_\354\240\225\353\257\274.py" diff --git "a/jaykxo/week01/11382_\352\274\254\353\247\210_\354\240\225\353\257\274.py" "b/jaykxo/week01/11382_\352\274\254\353\247\210_\354\240\225\353\257\274.py" new file mode 100644 index 0000000..80b02f3 --- /dev/null +++ "b/jaykxo/week01/11382_\352\274\254\353\247\210_\354\240\225\353\257\274.py" @@ -0,0 +1,6 @@ +import sys +input = sys.stdin.readline + +A, B, C = map(int, input().split()) + +print(A + B + C) \ No newline at end of file From 319d171bbb9c8f8f9d333ac126dea54fd22bdaa8 Mon Sep 17 00:00:00 2001 From: jaykxo Date: Thu, 11 Sep 2025 18:51:12 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Solved:=202438=20=EB=B3=84=20=EC=B0=8D?= =?UTF-8?q?=EA=B8=B0=20-=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2438_\353\263\204_\354\260\215\352\270\260 - 1.py" | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 "jaykxo/week01/2438_\353\263\204_\354\260\215\352\270\260 - 1.py" diff --git "a/jaykxo/week01/2438_\353\263\204_\354\260\215\352\270\260 - 1.py" "b/jaykxo/week01/2438_\353\263\204_\354\260\215\352\270\260 - 1.py" new file mode 100644 index 0000000..9b17e30 --- /dev/null +++ "b/jaykxo/week01/2438_\353\263\204_\354\260\215\352\270\260 - 1.py" @@ -0,0 +1,6 @@ +import sys +input = sys.stdin.readline +N = int(input()) + +for i in range(N): + print("*" * (i + 1)) \ No newline at end of file