Ответ:
with open('a.txt') as f1, open('b.txt', 'a') as f2:
l = [i.strip() for i in f1.readline().split()]
print(int(l[0][-1])*int(l[1][-1]), file=f2)
Объяснение:
решение, если 20 изначально лежит в файле б
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
with open('a.txt') as f1, open('b.txt', 'a') as f2:
l = [i.strip() for i in f1.readline().split()]
print(int(l[0][-1])*int(l[1][-1]), file=f2)
Объяснение:
решение, если 20 изначально лежит в файле б