12345678 1 12345678 Регистрация 18 Июн 2013 Сообщения 77 Репутация 0 Спасибо 0 Монет 0 28 Фев 2024 #2 str1 = input() str2 = input() simbols = set(str1) & set(str2) print("".join(simbols))
GOldma G GOldma Регистрация 3 Дек 2013 Сообщения 101 Репутация 0 Спасибо 0 Монет 0 28 Фев 2024 #3 королевский надеюсь?
djabrail3268 D djabrail3268 Регистрация 13 Окт 2013 Сообщения 78 Репутация 0 Спасибо 0 Монет 0 28 Фев 2024 #4 with open('data.txt', 'r') as inp: set_a = set(inp.readline().strip()) set_b = set(inp.readline().strip()) inp.close() set_c = set_a.intersection(set_b) with open('save.txt', 'w') as out: out.write(' '.join(map(str, set_c))) out.close()
with open('data.txt', 'r') as inp: set_a = set(inp.readline().strip()) set_b = set(inp.readline().strip()) inp.close() set_c = set_a.intersection(set_b) with open('save.txt', 'w') as out: out.write(' '.join(map(str, set_c))) out.close()