using System; class Program { static void Main() { string S = Console.ReadLine(); string res = ""; foreach (char c in S) { if (res.Length == 0 || res[^1] != c) // ^1 は C# 8 以降で最後の文字 { res += c; } } Console.WriteLine(res); } }