Cod sursa(job #692534)
| Utilizator | Data | 26 februarie 2012 16:57:29 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<iostream>
#include<fstream>
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
int main() {
long long a,b;
f>>a>>b;
g<<a+b; }