//------------
// Introduction to Programming Using Java: An Object-Oriented Approach
//	Arnow/Weiss
//------------

//------------
// Chapter 2 / Section 2.2 / Page 72
//	Invoking the println method. Subsequent output
//		begins on the next line
//------------ 

import java.io.*;

class Chapter2_2_2 {
	public static void main(String arg[]) {
		System.out.println("JA");
		System.out.println("VA");
	}
}
