Random random = new Random();
int randomNumber = random.nextInt(100) + 1
Demo gh pr create
Scanner sc = new Scanner(System.in);
int numberInput = sc.nextInt();
double doubleInput = sc.nextDouble();
String textInput = sc.next();
String textInput = sc.nextLine();
boolean boolInput = sc.nextBoolean();