Comment
username
convert string to lowercase
for(char &c : s) c = tolower(c);
convert string to uppercase
for(char &c : s) c = toupper(c);
The actual rating of this user is
1537
.
Original comment.
Statistics
for(char &c : s) c = tolower(c);for(char &c : s) c = toupper(c);