import std.stdio;void main(){string[16]s;for(string t;t=readln,t;)foreach(i,c;t[0..$-1])s[i]~=c;foreach(t;s)write(t);}