#C12874. Congratulations Students
Congratulations Students
Congratulations Students
You are given a list of students along with their respective scores. Your task is to print a congratulatory message for each student who scores strictly above \(75\). If no student meets this criterion, print "No students scored above 75.".
The input starts with an integer \(n\) that indicates the number of students. It is followed by \(n\) lines, each containing a student's name and their score separated by whitespace.
Example: For an input with 3 students:
3 John 80 Jane 60 Doe 90
The expected output is:
Congratulations, John! Congratulations, Doe!
inputFormat
The first line of input contains an integer \(n\) — the number of students. Each of the next \(n\) lines contains a student name (a string without spaces) followed by an integer \(score\), separated by whitespace.
outputFormat
For each student whose score is strictly greater than \(75\), print a line in the format "Congratulations, name!". If no student qualifies, print only "No students scored above 75.".
## sample0
No students scored above 75.