using System;
namespace AnimalType_If_
{
internal class Program
{
static void Main(string[] args)
{
string animal = Console.ReadLine();
if (animal == "dog")
{
Console.WriteLine("mammal");
}
else if (animal == "crocodile" || animal == "tortoise" || animal == "snake")
{
Console.WriteLine("reptile");
}
else
{
Console.WriteLine("unknown");
}
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)