###スペース区切りの2つの整数と、文字列が入力されるので、2つの整数の範囲の部分文字列を出力してください。
a,b = input().split()
a = int(a)-1
b = int(b)
st = input()
print(st[a:b])
入力例2
2 6
Welcome to the paiza! I`m studying ruby!
出力例2
elcom
Go to list of users who liked
More than 3 years have passed since last update.
###スペース区切りの2つの整数と、文字列が入力されるので、2つの整数の範囲の部分文字列を出力してください。
a,b = input().split()
a = int(a)-1
b = int(b)
st = input()
print(st[a:b])
入力例2
2 6
Welcome to the paiza! I`m studying ruby!
出力例2
elcom
Register as a new user and use Qiita more conveniently
Go to list of users who liked