Cod sursa(job #424757)
| Utilizator | Data | 25 martie 2010 10:22:28 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream>
#include<fstream>
int a,b,x;
using namespace std;
ifstream f("flyli.in");
ofstream g("flyli.out");
int main()
{
int a,b,x;
f>>a>>b;
x=a+b;
g<<x;
g.close();
f.close();
return 0;
}
