import std.stdio, std.string, std.conv; import std.range, std.algorithm, std.array, std.typecons, std.container; import std.math, std.numeric, core.bitop; enum inf = 1001001001; void main() { int t, b; scan(t, b); while (t--) { int n; scan(n); auto ans = solve(n, b); writeln(ans); } } string solve(int n, int b) { if (n == 0) { return "0"; } string ans; while (n != 0) { int q = n / b; int r = n % b; if (r < 0) { r += abs(b); q++; } ans ~= r.to!string; n = q; } return ans.retro.to!string; } void scan(T...)(ref T args) { import std.stdio : readln; import std.algorithm : splitter; import std.conv : to; import std.range.primitives; auto line = readln().splitter(); foreach (ref arg; args) { arg = line.front.to!(typeof(arg)); line.popFront(); } assert(line.empty); } void fillAll(R, T)(ref R arr, T value) { static if (is(typeof(arr[] = value))) { arr[] = value; } else { foreach (ref e; arr) { fillAll(e, value); } } }