#[macro_export] macro_rules! setup { { mut $input:ident: SplitWhitespace $(,)? } => { use std::io::Read; let mut buf = String::new(); std::io::stdin().read_to_string(&mut buf).ok(); let mut $input = buf.split_whitespace(); }; } #[macro_export] macro_rules! parse_next { ($str_iter:expr) => { $str_iter.next().unwrap().parse().ok().unwrap() }; } #[allow(unused_imports)] use std::collections::{HashMap, HashSet, VecDeque}; fn main() { setup! { mut input: SplitWhitespace }; let n: usize = parse_next!(input); let m: usize = parse_next!(input); let ans = (|| { let mut a = vec![]; let mut top = n; let mut bottom = m; loop { if bottom == 1 { a.push(top); break; } let quotient = top / bottom; a.push(quotient); { let next_top = bottom; let next_bottom = top - bottom * quotient; top = next_top; bottom = next_bottom; } } a.iter().map(usize::to_string).collect::>().join(" ") })(); println!("{}", ans); }