using System;
public class Program
{
public static void Main()
Console.WriteLine(IsAnagram("Post","opts4"));
}
public static bool IsAnagram(string first, string second){
bool isAnagram = false;
//Silent,Listen (example)
if(first.Length == second.Length){
foreach(char value in first){
if(second.IndexOf(value) >= -1){
isAnagram = true;
}else{
isAnagram = false;
return isAnagram;