A, B = int(input()), int(input())
x = gcd(A, B)
print(A // x, '/', B // x, sep = '')