Divide section by shinh

a,b,c=map(int,raw_input().split())
for d in range(a*c,c*b+1,b-a):
 e,f=d,c
 while f:e,f=f,e%f
 print`d/e`+('/'+`c/e`)*(c>e),

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page