思路:

  • 用string的replace方法去掉空格和换行符
  • 用len函数统计字符串长度
print(len(input().replace(" ","").replace("\n","")))