module pind.samples.ja.arithmetic.arithmetic_7; import std.stdio; void main() { uint number_1 = 6; uint number_2 = 7; writeln(number_1 * number_2); }