module pind.samples.ja.variables.variables_solution_1; import std.stdio; void main() { int amount = 20; double rate = 2.11; writeln("I have exchanged ", amount, " Euros at the rate of ", rate); }