// Program to print a text 5 times class Main { public static void main(String[] args) { int n = 69; for (int i = 1; i <= n; ++i) { System.out.println("THIS IS IN LOOP"); } } }