#include <iostream>
using namespace std;

void isASuperHero(bool canFly, bool isGood, bool isStrong);

int main() {
	
	//Voldemort
	printf("Voldemort ");
	isASuperHero(true, false, true);
	
	//Thor
	printf("Thor ");
	isASuperHero(false, true, true);
	
	//Batman
	printf("Batman ");
	isASuperHero(false, true, false);
	
	//Squidward
	printf("Squidward ");
	isASuperHero(false, false, false);
	
	return 0;
}

void isASuperHero(bool canFly, bool isGood, bool isStrong)
{
	if(/*has a super power (strength or flight)*/)
	{
		if(/*must not be evil*/)
		{
			printf("is a super hero.\n");
		}
		else
		{
			printf("is a super villian.\n");
		}
	}
	else
	{
		if(!isGood)
		{
			printf("is mean but otherwise ");
		}
		printf("is a normal person.\n");
	}
	
}