깃 링크 : 바로가기링크 : 바로가기 1차 시도public class num_14681{ public static void Main() { int x = Convert.ToInt32(Console.ReadLine()); int y = Convert.ToInt32(Console.ReadLine()); if (x > 0) { if (y > 0) { Console.WriteLine("1"); } else { Console.WriteLine("4"); } } ..