Skip to content

Commit 455bef1

Browse files
authored
Merge pull request #10 from team-mate-algorithm/jaykxo/week01
Jaykxo/week01
2 parents 355d343 + 319d171 commit 455bef1

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import sys
2+
input = sys.stdin.readline
3+
4+
A, B, C = map(int, input().split())
5+
6+
print(A + B + C)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import sys
2+
input = sys.stdin.readline
3+
N = int(input())
4+
5+
for i in range(N):
6+
print("*" * (i + 1))

0 commit comments

Comments
 (0)