1) 내가 작성한 코드 hour, minute = map(int, input().split()) time = int(input()) if (hour+(minute+time)//60) = 60: H += 1 M -= 60 if H >= 24: H -= 24 print(H,M)
hour, min = map(int,input().split()) if min >= 45: print(hour, min-45) elif hour > 0 and min < 45: print(hour-1, min+15) else: print(23, min+15) // 결과 // 입력값 10 10 // 출력값 9 25 // 입력값 0 30 // 출력값 23 45
x = int(input()) y = int(input()) if x > 0 and y > 0: print('1') elif x 0 > y: print('4') // 결과 // 입력값 1 1 // 출력값 1 // 입력값 -1 -1 // 출력값 3
1) 첫 번째 코드 year = int(input()) if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): print(1) else: print(0) 2) 두 번째 코드 year = int(input()) print('1') if ((year % 4 == 0) and (year % 100 != 0)) or (year % 400 == 0) else print('0') 3) 결과 // 결과 // 입력값 2000 // 출력값 1 // 입력값 1999 // 출력값 0
score = int(input()) if score >= 90: print('A') elif score >= 80: print('B') elif score >= 70: print('C') elif score >= 60: print('D') else: print('F') // 결과 100 A 82 B 32 F
A, B = map(int, input().split()) if A > B: print(">") elif A < B: print("