JCC25 Contest 1 P1 - Jason's Memory Loss
Submit solution
Points:
3 (partial)
Time limit:
1.0s
Memory limit:
256M
Author:
Problem type
Allowed languages
Assembly, Awk, Brain****, C, C++, Java, Lua, Pascal, Perl, PyPy 2, PyPy 3, Python, Sed
Jason has short term memory loss and keeps forgetting his name. He doesn't know what to write on the contest sheet, help him!
Given \(N\) sheets of paper with each paper requiring him to state his name, print Jason Medeiros
\(N\) times to help him out.
Do not output anything other than the expected output. Most importantly, do not output anything that "prompts" the judge. The judge is not a person, so asking it questions is pointless.
Constraints
Subtask 1 [60%]
\(1 \le N \le 10 ^ 1\)
Subtask 2 [40%]
\(1 \le N \le 10 ^ 6\)
Input Specification
The input will contain one integer, \(N\).
Output Specification
Output Jason Medeiros
\(N\) times on a new line each time
Sample Input
3
Sample Output
Jason Medeiros
Jason Medeiros
Jason Medeiros
Explanation for Sample Output
Jason Medeiros needs his name \(3\) times for \(3\) pages
Comments