diff --git "a/10818_\354\265\234\354\206\214,\354\265\234\353\214\200.py" "b/10818_\354\265\234\354\206\214,\354\265\234\353\214\200.py" new file mode 100644 index 0000000..7bb7531 --- /dev/null +++ "b/10818_\354\265\234\354\206\214,\354\265\234\353\214\200.py" @@ -0,0 +1,12 @@ +num = int(input()) #4 +num2 = list(map(int, input().split())) +max = num2[0] +min = num2[0] +for i in num2[1:]: + if i>max: + max = i + elif i < min: + min = i + +print(min,max) + diff --git "a/1924_2007\353\205\204.py" "b/1924_2007\353\205\204.py" new file mode 100644 index 0000000..183c280 --- /dev/null +++ "b/1924_2007\353\205\204.py" @@ -0,0 +1,5 @@ +month,day = map(int,input().split()) +if (month == 1 or 3 or 5 or 7 or 8 or 10 or 12): + print("go") +else: + print("dd") \ No newline at end of file diff --git "a/2438_\353\263\204\354\260\215\352\270\260-1.py" "b/2438_\353\263\204\354\260\215\352\270\260-1.py" new file mode 100644 index 0000000..88fbcff --- /dev/null +++ "b/2438_\353\263\204\354\260\215\352\270\260-1.py" @@ -0,0 +1,3 @@ +cnt = int(input()) +for i in range(1,cnt+1): + print('*'*i) \ No newline at end of file diff --git "a/2439_\353\263\204\354\260\215\352\270\260-2.py" "b/2439_\353\263\204\354\260\215\352\270\260-2.py" new file mode 100644 index 0000000..43df230 --- /dev/null +++ "b/2439_\353\263\204\354\260\215\352\270\260-2.py" @@ -0,0 +1,3 @@ +cnt = int(input()) +for i in range(1,cnt+1): + print(' '*(cnt-i)+str('*')*i) \ No newline at end of file diff --git "a/2440_\353\263\204\354\260\215\352\270\260-3.py" "b/2440_\353\263\204\354\260\215\352\270\260-3.py" new file mode 100644 index 0000000..e240d16 --- /dev/null +++ "b/2440_\353\263\204\354\260\215\352\270\260-3.py" @@ -0,0 +1,3 @@ +cnt = int(input()) +for i in range(cnt,0,-1): + print('*'*i) \ No newline at end of file diff --git "a/2441_\353\263\204\354\260\215\352\270\260-4.py" "b/2441_\353\263\204\354\260\215\352\270\260-4.py" new file mode 100644 index 0000000..2f5fe14 --- /dev/null +++ "b/2441_\353\263\204\354\260\215\352\270\260-4.py" @@ -0,0 +1,3 @@ +cnt = int(input()) +for i in range(cnt,0,-1): + print(' '*(cnt-i)+str('*')*i) \ No newline at end of file diff --git "a/2442_\353\263\204\354\260\215\352\270\260-5.py" "b/2442_\353\263\204\354\260\215\352\270\260-5.py" new file mode 100644 index 0000000..e7f2bd7 --- /dev/null +++ "b/2442_\353\263\204\354\260\215\352\270\260-5.py" @@ -0,0 +1,3 @@ +n = int(input()) +for i in range(1,n+1): + print(" "*(n-i) + "*" * (2*i-1)) \ No newline at end of file diff --git "a/2445-\353\263\204\354\260\215\352\270\260.py" "b/2445-\353\263\204\354\260\215\352\270\260.py" new file mode 100644 index 0000000..823e61b --- /dev/null +++ "b/2445-\353\263\204\354\260\215\352\270\260.py" @@ -0,0 +1,5 @@ +n = int(input()) +for i in range(1,n+1): + print("*" * i + " " * 2*(n-i) + "*" * i) +for j in range(1,n): + print("*"* (n-j) + " " * 2*j + "*" * (n-j)) \ No newline at end of file diff --git "a/2446-\353\263\204\354\260\215\352\270\260.py" "b/2446-\353\263\204\354\260\215\352\270\260.py" new file mode 100644 index 0000000..e1fc4de --- /dev/null +++ "b/2446-\353\263\204\354\260\215\352\270\260.py" @@ -0,0 +1,5 @@ +n = int(input()) +for i in range(n, 0, -1): + print(" " * (n-i) + "*" * (2*i-1)) +for j in range(2,n+1): + print(" " * (n-j) + "*" * (2*j-1)) \ No newline at end of file diff --git "a/2739_\352\265\254\352\265\254\353\213\250.py" "b/2739_\352\265\254\352\265\254\353\213\250.py" new file mode 100644 index 0000000..0d4fe06 --- /dev/null +++ "b/2739_\352\265\254\352\265\254\353\213\250.py" @@ -0,0 +1,3 @@ +i = int(input()) +for j in range(1,10): + print(i,'*',j,'=',i*j) \ No newline at end of file diff --git "a/8393_\355\225\251.py" "b/8393_\355\225\251.py" new file mode 100644 index 0000000..a190058 --- /dev/null +++ "b/8393_\355\225\251.py" @@ -0,0 +1,5 @@ +num = int(input()) +result = 0 +for i in range(1,num+1): + result = result + i +print(result) \ No newline at end of file diff --git a/a+b-2.py b/a+b-2.py new file mode 100644 index 0000000..2ae05f7 --- /dev/null +++ b/a+b-2.py @@ -0,0 +1,3 @@ +a = int(input()) +b = int(input()) +print(a+b) \ No newline at end of file diff --git a/a+b-3.py b/a+b-3.py new file mode 100644 index 0000000..0a102d7 --- /dev/null +++ b/a+b-3.py @@ -0,0 +1,4 @@ +T = int(input()) +for i in range(0,T): + a,b = map(int,input().split()) + print(a+b) \ No newline at end of file diff --git a/a+b-4.py b/a+b-4.py new file mode 100644 index 0000000..f3bc772 --- /dev/null +++ b/a+b-4.py @@ -0,0 +1,6 @@ +while True: + try: + A, B = map(int, input().split()) + print(A+B) + except: + break \ No newline at end of file diff --git a/a+b-5.py b/a+b-5.py new file mode 100644 index 0000000..84b7abd --- /dev/null +++ b/a+b-5.py @@ -0,0 +1,6 @@ +while True: + a, b = map(int, input().split()) + if a == 0 and b == 0: + break + else: + print(a+b) \ No newline at end of file diff --git a/a+b-8.py b/a+b-8.py new file mode 100644 index 0000000..9aa7082 --- /dev/null +++ b/a+b-8.py @@ -0,0 +1,5 @@ +T = int(input()) +for i in range(1,T+1): + a,b = map(int,input().split()) + print('Case #'+str(i)+':',a,'+',b,'=',a+b) + \ No newline at end of file diff --git a/a+b_b1000.py b/a+b_b1000.py new file mode 100644 index 0000000..0543132 --- /dev/null +++ b/a+b_b1000.py @@ -0,0 +1,2 @@ +a,b = map(int,input().split()) +print(a+b) \ No newline at end of file diff --git "a/n\354\260\215\352\270\260.py" "b/n\354\260\215\352\270\260.py" new file mode 100644 index 0000000..397aa27 --- /dev/null +++ "b/n\354\260\215\352\270\260.py" @@ -0,0 +1,3 @@ +num = int(input()) +for i in range(1,num+1): + print(i) diff --git "a/\352\267\270\353\214\200\353\241\234 \354\266\234\353\240\245\355\225\230\352\270\260.py" "b/\352\267\270\353\214\200\353\241\234 \354\266\234\353\240\245\355\225\230\352\270\260.py" new file mode 100644 index 0000000..618e7d7 --- /dev/null +++ "b/\352\267\270\353\214\200\353\241\234 \354\266\234\353\240\245\355\225\230\352\270\260.py" @@ -0,0 +1,6 @@ +while True : + try: + x = input() + print(x) + except: + break \ No newline at end of file diff --git "a/\352\270\260\354\260\215n.py" "b/\352\270\260\354\260\215n.py" new file mode 100644 index 0000000..2ca2aa0 --- /dev/null +++ "b/\352\270\260\354\260\215n.py" @@ -0,0 +1,3 @@ +num = int(input()) +for i in range(num,0,-1): + print(i) diff --git "a/\354\210\253\354\236\220\354\235\230\355\225\251.py" "b/\354\210\253\354\236\220\354\235\230\355\225\251.py" new file mode 100644 index 0000000..494f5fc --- /dev/null +++ "b/\354\210\253\354\236\220\354\235\230\355\225\251.py" @@ -0,0 +1,3 @@ +a = int(input()) +for i in range(0,a): + b = int(input()) \ No newline at end of file