// Arup Guha
// 1/28/2026
// Solution to Question #2 for COP 3330 Quiz #1

import java.util.*;

public class quiz1q2 {

	public static void main(String[] args) {
		
		// Create the object.
		Random rndObj = new Random();
		
		// Any loop that repeats 100000 will do.
		for (int i=0; i<100000; i++) 
			
			// We went over how to do this more generally in the course notes.
			// mod solution will be accepted as well...
			System.out.println(-1000000+rndObj.nextInt(2000001));
	}
}