using System; class SveVelikaSlova { static void Main() { Console.Write("Tekst -> "); string s = Console.ReadLine(); string t = ""; foreach(char c in s) { t += char.ToUpper(c); } Console.WriteLine("TEKST -> {0}", t); } }