using System;
public class Program
{
public static void Main()
string inputValue = "welcome to technology wORLD";
string outResult = ToCamelCase(inputValue);
Console.WriteLine(outResult);
}
public static string ToCamelCase(string inputValue)
string result = string.Empty;
// your code here
return result;