Update solution for A+B w/ id 5253058

Time: 60ms
MemUsage: 29160KB
This commit is contained in:
2024-08-29 16:24:30 +09:00
parent d28e27750c
commit 9686175b5f

View File

@@ -0,0 +1,3 @@
str = input()
str = [int(i) for i in str.split(" ")]
print(sum(str))