int x = 10; int y = 20; void main() { import std.stdio : writeln; int x = 5; { int z; z = y / x; writeln("Value of z is ", z); } } // Output: Value of z is 4