Cod sursa(job #1323212)
Utilizator | Data | 20 ianuarie 2015 20:08:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
long long int c;
int main(){
fin >> a >> b;
c=a+b;
fout << c << '\n';
fin.close();
fout.close();
}