Sort_game_challenger

this is the problem https://hack.codingblocks.com/contests/c/101/90
I m able to get correct output as required on codeblocks and dev c++ IDE but same code is not giving correct output on coding blocks IDE or hackerblocks, its just printing the output same as input, i m not able to understand what is the problem, please reply as soon as possible.
MY CODE LINK :
https://ide.codingblocks.com/s/62024

Hey Sonam, Consider this test case
79
4
Eve 78
Bob 99
Suzy 86
Alice 86
here there are 4 employees and you have to print those employees whose salary is greater than 79
but Suzy and Alice have same salary so we will consider dictionary order… alice comes before Suzy as “a<s” so output will be
Bob 99
Alice 86
Suzy 86


i am saying that im getting the correct output on dev c++ and codeblocks… but when im running same program on CODINGBLOCKS IDE, output is not coming out correct…

you are giving 2 white spaces between name and salary