module pind.samples.ja.arithmetic.arithmetic_solution_1; import std.stdio; void main() { int first; write("Please enter the first number: "); readf(" %s", &first); int second; write("Please enter the second number: "); readf(" %s", &second); int quotient = first / second; int remainder = first % second; writeln(first, " = ", second, " * ", quotient, " + ", remainder); }