using System; class BrojRazmaka { static void Main() { Console.Write("Tekst -> "); string s = Console.ReadLine(); int br = 0; foreach(char c in s) { if(c == ' ') { br++; } } Console.WriteLine(br); } }