import java.util.Scanner;

public class ScannerExample {
	public static void main(String[] args) {
		Scanner	sc = new Scanner(System.in);

		int i = sc.nextInt();	// 他に nextDouble, nextLine, next など
		System.out.printf(" %d の 2乗は %d です。%n", i, i*i);
	}
}
