Cod sursa(job #497003)
Utilizator | Data | 1 noiembrie 2010 11:37:43 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include "stdafx.h"
#include "fstream"
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
int x,y;
in>>x>>y;
in.close();
out<<x+y;
out.close();
}