Загрузка данных


text='привет мир! я компьютер'
cens='ир!'
for i in text:
    if i in cens:
        print('*')
    else:
        print(i)