输入一个字符串s和一个整数n,输出字符串s从索引号n开始到末尾组成的子串及子串的长度。
s = input() n = int(input()) if n >=len(s): print("s长度不够") print(s[n:],len(s[n:]))