Add to Four

Write code that will add numbers up to 4, then print the Integer.

public class AddToFour {
  public static void main( String[] args ) {
    int num = 0;
    
    for (int i = /* FINISH ME */) {
      
    }
    
    System.out.println(/* FINISH ME */);
  }
}