import java.util.Random; class randomtest { public static void main(String[] args) { int x; Random a = new Random(); x = a.nextInt(1)+100; System.out.println(x); } }