// $Id: strcat.csharp,v 1.1 2002/10/16 16:52:00 dada Exp $
// http://dada.perl.it/shootout/
//
// code contributed by Erik Saltwell
using System;
class App {
public static int Main(String[] args) {
int N;
N = int.Parse(args[0]);
if(N < 1) N = 1;
System.Text.StringBuilder sb = new System.Text.StringBuilder(32);
for (int i=0; i<N; i++) {
sb.Append("hello\n");
}
Console.WriteLine(sb.Length);
return(0);
}
}