namespace _3._Longest_Substring_Without_Repeating_Characters; internal class Program { static void Main(string[] args) { Console.WriteLine(new Solution().LengthOfLongestSubstring("dvdf")); } }