Cod sursa(job #626100)
Utilizator | Data | 26 octombrie 2011 13:31:42 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<fstream>
using namespace std;
ifstream in("a.in");
ofstream out("a.out");
int main()
{
int a,b;
in>>a>>b;
out<<a+b;
return 0;}