Cod sursa(job #1742876)

Utilizator Mihai9Oniga Mihai Mihai9 Data 17 august 2016 11:41:33
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.28 kb
#include <bits/stdc++.h>
  
using namespace std;
  
int main() {
 ifstream fin("adunare.in");
 ofstream fout("adunare.out");
 fin.tie(0);
 ios_base::sync_with_stdio(false);
 int A, B;
 fin >> A >> B;
 fin.close();
  
 fout << A + B << '\n';
 fout.close();
  
 return 0;
}