import std.random;void main(){Random g;g.seed=777;foreach(i;0..1000)printf("%d",g.next%2);}