import std.conv; alias Uint = uintN!20; auto x = Uint("31415926535897969393238462"); auto y = Uint("1145141919810893"); assert((x*y).to!string == "35975694425956177975650270094479894166566"); assert((x/y).to!string == "27434090039");
See Implementation