s=input()
n=eval(input())
lst=[]
for i in range(n):
    lst.append(s[i])
res="".join(lst)
print(res)

基础的字符串遍历