Cod sursa(job #2756444)
Utilizator | Data | 31 mai 2021 19:19:59 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | py | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
import numpy as np
with open("adunare.in", "r") as f:
a, b = [int(x) for x in f.read().split()]
a = np.int32(a)
b = np.int32(b)
with open("adunare.out", "w") as f:
f.write(str(a + b))