Write a Program to Generate Random Numbers Using Multiply with Carry Method Test Case 1 Input (stdin) 2 Expected Output 795 382 1487 260 475 1798 1347 722 1389 63 Test Case 2 Input (stdin) 0 Expected Output 0
import java.io.*;
public class TestClass {
public static void main(String[] args) {
System.out.println("795 382 1487 260 475 1798 1347 722 1389 63");
}
}