Introduction
Description
The first thing you need to be able to do is read from a file and print out what's in that file. Simple enough right?
Input
The data file will contain an integer, , followed by lines of data.
Output
Print out what's in the data, line by line
Sample Input
3
There are three sets of data. This is one.
This is the 2nd set.
This is the last one. Good!
Sample Output
There are three sets of data. This is one.
This is the 2nd set.
This is the last one. Good!