728x90 반응형 SMALL 백준문제105 백준) 5717번 - python while True: m,f = map(int,input().split()) if m == 0 and f == 0: break else : print(m + f) 2024. 4. 2. 백준) 5596번 - python grade1, grade2 = list(map(int, input().split())), list(map(int, input().split())) print(sum(grade1) if sum(grade1) >= sum(grade2) else sum(grade2)) 2024. 4. 2. 백준) 9316번 - python [print(f"Hello World, Judge {i+1}!") for i in range(int(input()))] 2024. 4. 1. 백준) 10987번 - python lst = ['a','e','i','o','u'] count = 0 s = list(input()) for i in range(len(s)): if s[i] in lst : count += 1 print(count) 2024. 3. 31. 이전 1 ··· 7 8 9 10 11 12 13 ··· 27 다음 728x90 반응형 LIST