import sys
input = sys.stdin.readline
x = int(input())
line = 1
while x > line: # 대각선의 원소 개수는 1, 2, 3, 4... 순으로 증가
x -= line
line += 1
if line % 2 == 0:
a = x
b = line - x + 1
elif line % 2 == 1:
a = line - x + 1
b = x
print(f'{a}/{b}')
'백준 문제 풀이 > 수학' 카테고리의 다른 글
6064 카잉 달력 (python) (3) | 2024.07.16 |
---|---|
1541 잃어버린 괄호 (python) (0) | 2024.07.06 |
15829 Hashing (python) (0) | 2024.06.27 |
11050 이항 계수 1 (python) (0) | 2024.06.26 |
2738 행렬 덧셈 (python) (0) | 2024.06.26 |