using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp97 { class Program { static void Main(string[] args) { double sum = 0; string[] str = Console.ReadLine().Split(); int a1 = int.Parse(str[0]); int a2 = int.Parse(str[1]); int b1 = int.Parse(str[2]); int b2 = int.Parse(str[3]); int c1 = int.Parse(str[4]); int c2 = int.Parse(str[5]); sum = a1 * a2 + b1 * b2 + c1 * c2; if (sum % 2 == 0) { Console.WriteLine(":-)"); } else { Console.WriteLine(":-("); } Console.ReadLine(); } } }