System.Console.Write("String to hash: ");
var input = System.Console.ReadLine();
System.Console.Write("Total number of buckets: ");
var total = System.Console.ReadLine();
var bytes = Encoding.UTF8.GetBytes(input!);
var hash = MurmurHash.Create128(managed: false).ComputeHash(bytes);
var longVal = System.BitConverter.ToUInt32(hash) % int.Parse(total!);
System.Console.WriteLine($"Bucket: {longVal}");