Skip to content

Instantly share code, notes, and snippets.

@sabnamsp
Created January 25, 2023 09:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sabnamsp/e6556f82d31fa32195cbacbff77c4e8d to your computer and use it in GitHub Desktop.
Save sabnamsp/e6556f82d31fa32195cbacbff77c4e8d to your computer and use it in GitHub Desktop.
Codechef INSTAGRAM problem solution
#include<stdio.h>
int main()
{
int t;
scanf("%d", &t);
while(t--)
{
int a,b;
scanf("%d %d", &a, &b);
if(a>(b*10))
{
printf("\nYES");
}
else{
printf("\nNO");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment