#5261

BÀI TẬP :   37

  1. t,m=map(int,input().split())
  2. a=t
  3. b=m
  4. while a!=b:
  5.     if a>b:
  6.         a-=b
  7.     else:
  8.         b-=a
  9. t//=a
  10. m//=a
  11. print(t,”/”,m,sep=””)