void main() { import std.stdio, std.string, std.conv, std.algorithm; int n; rd(n); auto a = readln.split.to!(long[]); import std.numeric; auto g = reduce!((res, e) => (gcd(res, e)))(0L, a); writefln("%(%s:%)", a.map!((e) => e / g)); } void rd(T...)(ref T x) { import std.stdio : readln; import std.string : split; import std.conv : to; auto l = readln.split; assert(l.length == x.length); foreach (i, ref e; x) e = l[i].to!(typeof(e)); }