Cod sursa(job #2648451)

Utilizator pungaalexandruAlexandru Punga pungaalexandru Data 10 septembrie 2020 22:05:36
Problema A+B Scor 100
Compilator py Status done
Runda Arhiva de probleme Marime 0.21 kb

def main():
    suma=0
    with open("adunare.in",'r') as file:
        f=file.readlines()
        suma=int(f[0])+int(f[1])
    with open("adunare.out",'w') as file:
        file.write(str(suma))
main()