728x90 반응형 SMALL programming379 백준) 11654번 - python a = input() print(ord(a)) 2024. 2. 5. 백준) 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. 이전 1 ··· 90 91 92 93 94 95 다음 728x90 반응형 LIST