Cod sursa(job #1996243)
| Utilizator | Data | 30 iunie 2017 17:56:01 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream F("adunare.in");
ofstream G("adunare.out");
int a, b;
int main ()
{
F>>a>>b;
G<<a+b;
return 0;
}
