/* The Great Win32 Language Shootout http://dada.perl.it/shootout/
contributed by Isaac Gouy (Nice novice)
To compile:
nicec --sourcepath=.. -d=. -a strcat.jar strcat
To run:
java -jar strcat.jar 40000
*/
import ackermann; // reuse toSingleInt
void main(String[] args){
var n = toSingleInt(args);
String s = "hello\n";
StringBuffer buffer = new StringBuffer(32);
while (n-- > 0) buffer.append(s);
println(buffer.length());
}