Cod sursa(job #2152333)

Utilizator carol800Dima Carol Valentin carol800 Data 5 martie 2018 13:59:54
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <bits/stdc++.h>
using namespace std;
int main()
{ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
fin>>a>>b;
fout<<a+b;
return 0;}