challenges

Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.

This project is maintained by chankruze

Gotham City

You are a police officer, and you get a report of criminal activity! Should you go on your own, or should you call a superhero to help you fight the crime? If there are less than 5, you can handle this on your own, if there are 5-10, you will want to go with Batman for backup, and if there are more than 10, you should stay where it is safe and let Batman handle this on his own!

Task

Determine whether you need to call backup based on the total number of criminals being reported.

Input Format

An integer that represents the total number of criminals present at the scene.

Output Format

A string that says I got this!, Help me Batman, or Good Luck out there! depending on the scenario.

Sample Input

7

Sample Output

Help me Batman

Solutions

Language Solution
C available
CPP available
C# available
Python available
Java available
Ruby available
Swift available