module pind.samples.ja.arithmetic.arithmetic_16; import std.stdio; void main() { int width = 40000; int length = 60000; int areaPerTree = 1000; int treesNeeded = width * length / areaPerTree; writeln("Number of trees needed: ", treesNeeded); }