Simply started my learning process right here.

import java.util.*;
​
public class LoveThreeThousands {
    public static void main(String[] args) {
        int threeThousands = 3000;
        System.out.println("\"I love you "+threeThousands+".\"");
    }
}