using System;
public class Program
{
public static void Main()
string s="Плевен";
string m=s.Substring(1,3);
Console.WriteLine(m);
}