import java.util.Scanner;

public class A 
{
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt();

        // debugging:
        System.out.println("read value " + n);
        
        scan.nextLine();        // skip to next line after read int

        String message = scan.nextLine();

        // debugging:
        System.out.println("read line of text: " + message);

    }
}
