Write a program that prints "The cat sat on the mat" a specified number of times.
The input will be a single integer.
If the input number is N, the output must consist of exactly N lines, each containing the text "The cat sat on the mat".
The input will be positive and less than a million.
3
The cat sat on the mat The cat sat on the mat The cat sat on the mat