import java.util.*; class RandomNumbers { public static void main(String[] args) { int c; Random t = new Random(); // random integers in [0, 100] for (c = 1; c <= 10; c++) { System.out.println(t.nextInt(100)); } } }

About Admin MC3
This is dummy text. It is not meant to be read. Accordingly, it is difficult to figure out when to end it. But then, this is dummy text. It is not meant to be read. Period.