Cod sursa(job #2352069)
Utilizator | Data | 22 februarie 2019 22:22:53 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | py | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
with open("adunare.in","r") as f, open("adunare.out","w") as g:
cont=f.read()
a=int(cont.split()[0])
b=int(cont.split()[1])
g.write(str(a+b))