Online D Compiler
import std.stdio; void main(string[ ] args) { int x = 25; int y = 45; int z = x + y; writeln("x + y = ", z); }
Output Results
x + y = 70
import std.stdio; void main(string[ ] args) { int x = 25; int y = 45; int z = x + y; writeln("x + y = ", z); }
Output Results
x + y = 70