/****************************************************************************** Online Java Compiler. Code, Compile, Run and Debug java program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a; String b; System.out.print("Vnesi besedo; "); b = sc.next(); System.out.print("Vnesi stevilo; "); a = sc.nextInt(); for (; a > 0; a--){ System.out.println(b); } } }