public class T { public static void main(String[] args) throws Exception { for (int i = 0; i < 50; i++) { System.out.print("+"); Thread.sleep(1); } System.out.println(); } }