1. Input two integer variables using String arg[] 2. Output both variables to console 3. Convert your arg[] to integer numbers a and b 4. Calculate the y as a SUM of a and b. 5. Output y to console 6. Use IF-THEN statement checking is the y bigger then 10. if your y is smaller, then output "too small", else output "big enought" 7. Use FOR loop, y and i to calculate follows: y=y+1 y=y+2 y=y+3 y=y+4 Y=y+5 8. Let's try the WHILE loop y=5; while(y<10){ y++; System.out.println(y); } 9. Next, try the DO-WHILE loop y=5; do { y++; System.out.println(y); }while(y<10); 10. Lets use the java.lang.Math class and Static Methods to calculate: max of two numbers pow of a and b