Cod sursa(job #969479)
Utilizator | Data | 4 iulie 2013 14:25:38 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream fin("A+B.in");
ofstream fout("A+B.out");
long long a,b;
int main()
{
fin>>a>>b;
fout<<a+b;
return 0;
}