eolymp

Решение на C#

Решение простой задачи на C#.


using System;

class Solution {
  public static void Main(string[] args) {
      int number = Convert.ToInt32(Console.ReadLine()); 
      Console.WriteLine("{0} {1}", (int) number/10, (int) number%10);
  }
}