[C#] 백준 2480번 : 주사위 세개
[C#] 백준 2480번 : 주사위 세개using System;class Program{ static void Main() { string num = Console.ReadLine(); string[] numbers = num.Split(' '); int a = int.Parse(numbers[0]); int b = int.Parse(numbers[1]); int c = int.Parse(numbers[2]); if (a == b && b == c) { Console.WriteLine(10000 + a * 1000); } else if ( a == b && b != c ) ..