//------------
// Introduction to Programming Using Java: An Object-Oriented Approach
//	Arnow/Weiss
//------------

//------------
// Chapter 2 / Section 2.2 / Page 24
//	Invoking the print method
//------------ 

import java.io.*;

class Chapter2_2_1 {
	public static void main(String arg[]) {
		System.out.print("JA");
		System.out.print("VA");
	}
}
