/* package whatever; // don't place package name! */

import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		String a = "The Java Add/Multiply Program.";
		System.out.println(a);
		int b = 25;
		int c = 25;
		int d = (25 + 25);
		System.out.println(b + " " + c + " " + d);
		int e = 45;
		int f = 45;
		int g = (e * f);
		System.out.println(e + " " + f + " " + g);
	}
}