728x90 반응형 SMALL programming374 백준) 14681번 - python a = int(input()) b = int(input()) if a>0 and b>0: print("1") elif a>0 and b 2024. 2. 4. 백준) 10952번 - python while True: a,b = map(int, input().split(" ")) if a == 0 and b == 0: break else: print(a + b) 2024. 2. 3. 백준) 10872번 - python import sys sys.setrecursionlimit(10**6) n = int(input()) def factorial(n): if n 2024. 2. 2. 백준) 10871번 - python n,x = map(int, input().split(" ")) a = list(map(int, input().split(" "))) for i in range(n): if a[i] < x: print(a[i],end=" ") 2024. 2. 1. 이전 1 ··· 89 90 91 92 93 94 다음 728x90 반응형 LIST