package hello;
import java.util.Scanner;
public class example_for_cycle {
public static void main(String[]args){
Scanner in=new Scanner(System.in);
System.out.println("what number do you want to say to the world?"
int n=in.nextInt();
System.out.println(n+"is the number that I highligh");
}
}

