Code is compiling succesfully but it is giving an error of time limit exceeded

#include
#include<math.h>
using namespace std;
int ayush(int m)
{
int count=0;
for(int j=0;j<m;j++)
{
count++;
}
return count;
}
int harshit(int n)
{
int count1=0;
for(int k=0;k<n;k++)
{
count1++;
}
return count1;
}
int main() {
int t,m,n,count,count1;

cin>>t;

while(t--)
{
	
	
	cin>>m;
	

	
	cin>>n;
	
	int count=ayush(m);
	int count1=harshit(n);
	if(count>count1)
	cout<<"Aayush\n";
	else
	cout<<"Harshit";
}

return 0;

}

hi @sanidhya2june_a60341bbfe0185dc
refer this -->

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.