Cod sursa(job #615899)
| Utilizator | Data | 11 octombrie 2011 11:11:13 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.25 kb |
#include<iostream>
#include<fstream>
using namespace std;
int a,b;
int main()
{
ifstream f("adunare.in");
{
f>>a;
f>>b;
}
ofstream g("adunare.out");
g<<(a+b);
}
