跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2524. Nearest Fraction

    ID: 2530 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 5 上传者: 标签>枚举模拟双指针算法思想编程与模拟进阶难度共享题库Codeforces英文题面题目来源题面语言

Nearest Fraction

题目描述

B. Nearest Fraction
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given three positive integers x,y,n. Your task is to find the nearest fraction to fraction whose denominator is no more than n.

Formally, you should find such pair of integers a,b (1≤bn;0≤a) that the value is as minimal as possible.

If there are multiple "nearest" fractions, choose the one with the minimum denominator. If there are multiple "nearest" fractions with the minimum denominator, choose the one with the minimum numerator.

Input

A single line contains three integers x,y,n (1≤x,y,n≤105).

Output

Print the required fraction in the format "a/b" (without quotes).

Examples
Input
3 7 6
Output
2/5
Input
7 2 4
Output
7/2

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2167 题。保留原作者与原赛事署名。