This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int a,b,c; | |
| a = int.Parse(Console.ReadLine()); //標準入力 | |
| string[] str = Console.ReadLine().Split(' ');//2つ以上のスペース区切り入力の取得 | |
| b = int.Parse(str[0]); //数値で受け取りたい場合は変換する | |
| c = int.Parse(str[1]); |
NewerOlder