public class L3 {

	public static void main(String[] args) {

		System.out.println("Lecture 3");

		int a = 10;
		int b = 5;

		int c = a + b;  // c holds the value 15
		int d = 3 + 2;  // d holds the value 5
		int e = a + 7;  // e holds the value 17

		int f = a * b;  // f holds 50
		int g = a / b;  // g holds 2

		double i = a / 3;  // i holds 3 (decimal part is trucated)
		System.out.println("i: " + i);

		double j = a / 3.0; 
		System.out.println("j: " + j);

	} // end of main
} // End of class
