import std.stdio; import std.string; void main(){ char[] nev; write("Név: "); readln(nev); nev = chomp(nev); writeln("Ezt írtad: ", nev); }