using System;
class Program
{
static void Main() {
string str1 = "C# Software Developer";
Console.WriteLine(str1.GetHashCode());
string str2 = "C# Software Developer";
Console.WriteLine(str2.GetHashCode());
string str3 = "java c# python";
Console.WriteLine(str3.GetHashCode());
}
}
/*
run:
-1635471873
-1635471873
1264750924
*/