Cod sursa(job #1041968)
Utilizator | Data | 26 noiembrie 2013 13:44:52 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream>
using namespace std;
ifstream fin("A+B.in");
ofstream fout("A+B.out");
int main()
{int A,B;
fin>>A;
fin>>B;
fout<<A+B;
}