Cod sursa(job #1081566)
| Utilizator | Data | 13 ianuarie 2014 18:47:23 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream>
using namespace std;
main(){
long long int a,b;
ifstream f1("adunare.in");
ofstream f2("adunare.out");
f1>>a>>b;
f2<<a+b;}