using System;
using System.IO;

class FileTest 
{
    public static void Main(String[] args)
    {
        String text = fileToText(args[0]);
        Console.WriteLine(text);
    }

    public static String fileToText(String filePath)
    {
        StreamReader file = new StreamReader(filePath);
        String text = file.ReadToEnd();
        file.Close();
        return text;
    }
}
