Problem Type : Super Easy
#include<stdio.h>
int main()
{
long long int a,b,t,i;
scanf("%lld",&t);
for(i=1; i<=t; i++)
{
scanf("%lld%lld",&a,&b);
if(a<b)
{
printf("<\n");
}
else
{
if(a>b)
{
printf(">\n");
}
else
{
printf("=\n");
}
}
}
return 0;
}
#include<stdio.h>
int main()
{
long long int a,b,t,i;
scanf("%lld",&t);
for(i=1; i<=t; i++)
{
scanf("%lld%lld",&a,&b);
if(a<b)
{
printf("<\n");
}
else
{
if(a>b)
{
printf(">\n");
}
else
{
printf("=\n");
}
}
}
return 0;
}
No comments:
Post a Comment