Input
Output
public class Break { public static void main(String[] args) { int i=0; for(i=1; i<=5; i++){ System.out.println(i); break; } } }