Cod sursa(job #2011519)
Utilizator | Data | 16 august 2017 15:41:48 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 kb |
#include <iostream>
#include <fstream>
using namespace std;
/*
#define INPUT "text.in"
#define OUTPUT "text.out"
ifstream fin(INPUT);
ofstream fout(OUTPUT);
*/
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a,b;
fin>>a>>b;
fout<<a+b;
}