// An example of a simple program that reads an integer from
// standard input

import java.io.*;
 
public class ReadInteger {

    public static void main (String[] arg) {
	Reader r = new InputStreamReader(System.in);
	BufferedReader br = new BufferedReader(r);
    
	int x;
	try {
	    String s = br.readLine();
	    x = Integer.parseInt(s);
	}
	catch (NumberFormatException e) {
            // If the format is bad use the value 1234567 instead.	
            x = 1234567;
	}
	catch (Exception e) {
	    throw new RuntimeException(e);
	    // Any other type of exception is simply passed on
	}
		
	System.out.println("The square of "+x+" is "+x*x);

    }
}
