This document summarizes a Java programming experiment by student JHA AMIT Suman to print all prime numbers up to a user-input integer. The experiment involved taking integer input from the user, then using nested for loops to check if each number from 2 to the input is prime by testing for divisibility by numbers from 2 to the number-1. If a number is not divisible by any other numbers, it is prime and is printed. The student learned how to take user input in Java, use the Scanner class, implement conditional statements, and apply looping concepts.