s=input("请输入字符: ")
Max=0
c=1
for i in range(1,len(s)):
if s[i]==s[i-1]:
c+=1
if c>Max:
else:
print(Max)
程序代码如上所示,其中①和②处的应填入的代码是( )