xxxxxxxxxx
import std.stdio;
void main()
{
int[] di5 = [0, 1, 3:5, 7:8, 44];
int[9] di6 = [0, 1, 3:5, 7:8, 44];
writeln(di5);
writeln(di6);
}