Header Ads Widget

Helping Chef | Codechef solution

   Problem:-

Write a program, which takes an integer N and if the number is less than 10 then display "Thanks for helping Chef!" otherwise print "-1".

Input

The first line contains an integer T, total number of testcases. Then follow T lines, each line contains an integer N.

Output

For each test case, output the given string or -1 depending on conditions, in a new line.

Constraints

  •  T  1000
  • -20  N  20

Example

Input
3 
1
12
-5
Output
Thanks for helping Chef!
-1
Thanks for helping Chef!

Code:-

#include <iostream>
using namespace std;

int main() {
int t,n;
cin>>t;
while(t--)
{
cin>>n;
if(n<10)
cout<<"Thanks for helping Chef!"<<endl;
else
cout<<"-1"<<endl;
}
    
    return 0;
}

Recommended Post:

Cracking the coding interview:-

 Array and string:-

Tree and graph:-

Hackerearth Problems:-

Hackerrank Problems:-

Data structure:-

Key points:-

 MCQs:-

Post a Comment

0 Comments