0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-11 18:31:58 +00:00

计蒜客-42414 A+B problem

https://vjudge.net/solution/31594052
This commit is contained in:
Baoshuo Ren 2021-07-09 09:57:08 +08:00 committed by Baoshuo Ren
parent 251728e542
commit c7fb5ad7c6
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,3 @@
a = int(input())
b = int(input())
print(a + b)