Відповідь:
a,b=[int(i) for i in input().split()],[int(i) for i in input().split()]
c=int(input())
if c<0:
a+=b
print(a)
else:
b+=a
print(b)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
a,b=[int(i) for i in input().split()],[int(i) for i in input().split()]
c=int(input())
if c<0:
a+=b
print(a)
else:
b+=a
print(b)