Cod sursa(job #467763)
| Utilizator | Data | 30 iunie 2010 14:16:09 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | runda_test | Marime | 0.15 kb |
#include<fstream>
using namespace std;
int main()
{
int a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout<<a+b;
}
