Cod sursa(job #1247678)
| Utilizator | Data | 23 octombrie 2014 12:04:49 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<fstream>
using namespace std;
int main() {
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b,s;
fin>>a>>b;
s=a+b;
fout<<s;
fin.close();
fout.close();
return 0;
}
