Ad

You will have an input and a factor.
Multiply the String by the factor.
For example: "hi",2 -> "hihi"

public class Kata{		
		public static String multiply(String input,int times){
		String save = input;
		for (int i = 1; i < times; i++) {
			System.out.println(input);
			input += save;
		}
      if(times == 0){
      input = "";
      }
		return input;
	}
}