import re

import io
import sys
input_stream = io.TextIOWrapper(sys.stdin.buffer, encoding='utf-8')

s = input_stream.readlines()
s = "\n".join(s)

pc = '(//.*|/\*[\d\D]*?\*/)'
mc = re.findall(pc, s)
for v in mc:
    vs = v.split("\n\n")
    for l in vs:
        print (l.lstrip())

相关文章:

  • 2021-11-14
  • 2021-05-25
  • 2021-12-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-16
  • 2021-10-07
猜你喜欢
  • 2022-12-23
  • 2021-11-26
  • 2022-01-29
  • 2022-01-12
  • 2022-01-01
  • 2021-08-03
  • 2021-11-21
相关资源
相似解决方案