I dont get what you mean...
What I mean is, you need to figure out how you will solve the problem. You need to print the "Smallest Integer", right?
How will you do that?
Easy. Print out the smallest integer. One step process. But this step can be broken down into more steps. So the steps to printing the smallest integer are given below.
Well to print the smallest integer you have to know which integer is the smallest.
You also have to be able to print.
Now that you know the smallest integer and know how to print, go ahead and print it out.
But wait. You don't know the smallest integer yet. There are more steps involved in knowing the smallest integer. We will get back to this in a minute.
Considering how to print, well that is something you know how to do in code with System.out.print so that does not need broken down into more steps.
Now back to the smallest integer. To get the smallest integer from a group of integers, you have to have a group of integers and some way to iterate through them, and some way to compare to see which is the smallest.
Take this as a hint for a starting point, and continue to break the steps down to the point you know how to write a line or two of code to accomplish each little task. Once you get through breaking the process down into little steps you can write code for, the results become an outline for the code. Refer to the process you design as you write the code to perform the steps.