Cod sursa(job #2506467)
Utilizator | Data | 8 decembrie 2019 11:12:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | py | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
f = open("v:/Proiecte Python/adunare.in","r")
x = int(f.readline())
y = int(f.readline())
f.close()
f = open("v:/Proiecte Python/adunare.out", "w")
z = x + y
f.write(str(z))
#print(x + y)
f.close()