MapleStory Finger Point Cute Line Smiley Blinking Hello Kitty Angel MapleStory Finger Point

๐Ÿƒ‍โ™‚๏ธBaekjoon/Python

หšโ‚Šโœฉโ€งโ‚Š #2884 ์•Œ๋žŒ ์‹œ๊ณ„ - python หšโ‚Šโœฉโ€งโ‚Š

HYEJU01 2024. 4. 8. 20:33

h,m = map(int,input().split())

if(m<45):
    if(h<1):
        h=23
        m = (m+60)-45
    else:
        h -= 1
        m = (m+60)-45
else:
    m -= 45

print(h,m)