m, n = gets.split.map(&:to_i) ans = 0 loop do break if m == n || m == 0 if n > m m, n = n, m ans += 1 else ans += m / n m %= n end end p ans - 1