Cod sursa(job #1179243)
Utilizator | Data | 28 aprilie 2014 12:01:14 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main(){
long a,x;
f>>a>>x;
g<<a+x;
return 0;
}