fork download
  1. using System;
  2. internal class Program
  3. {
  4. private static void Main(string[] args)
  5. {
  6. Do(tseloe: 5, stroka: "pituh");
  7. }
  8.  
  9. static void Do(string stroka, int tseloe)
  10. {
  11. Console.WriteLine(stroka);
  12. Console.WriteLine(tseloe);
  13. }
  14. }
Success #stdin #stdout 0.04s 23904KB
stdin
Standard input is empty
stdout
pituh
5