module pind.samples.ja.arithmetic.arithmetic_3; import std.stdio; void main() { int number_1 = 12; int number_2 = 100; writeln("Result: ", number_1 + number_2); writeln("With a constant expression: ", 1000 + number_2); }