Cod sursa(job #2329291)
| Utilizator | Data | 26 ianuarie 2019 15:46:24 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | py | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
fileIn = open('adunare.in', 'r')
fileOut = open('adunare.out', 'w')
a = float(fileIn.readline())
b = float(fileIn.readline())
fileOut.write(str(a + b))
fileIn.close()
fileOut.close()
