xxxxxxxxxx
import std.stdio;
void main() {
string a = "test";
string b = "test";
a = a ~ b;
writeln(a);
}