본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 31260번 ПРАВОЪГЪЛНИК

by 현장 2024. 12. 22.

-Code

x, y = map(int, input().split())
d = int(input())

total = x * 100 + y

big = (total / 4) + (d / 2)
small = (total / 4) - (d / 2)

print(f"{int(big // 100)} {int(big % 100)}")
print(f"{int(small // 100)} {int(small % 100)}")