fork(1) download
  1. using System;
  2.  
  3. public class MainClass
  4. {
  5. public static void Main()
  6. {
  7. string s = Console.ReadLine();
  8. int k = Convert.ToInt32(Console.ReadLine()) - 1;
  9. for (int i = 0; i < s.Length; i++)
  10. {
  11. if (i != k)
  12. {
  13. Console.Write(s[i]);
  14. }
  15. }
  16. }
  17. }
Success #stdin #stdout 0.06s 30196KB
stdin
Лось
3
stdout
Лоь