import std.stdio; 
import std.random; 

void main() { 
   int min = 1; 
   int max = 10; 

   const number = uniform(min, max + 1); 
   // cannot modify const expression number| 
   // number = 34; 
   typeof(number) value = 100; 

   writeln(typeof(number).stringof, number); 
   writeln(typeof(value).stringof, value); 
}