Cod sursa(job #815529)
| Utilizator | Data | 17 noiembrie 2012 10:08:24 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream>
using namespace std;
int main(){
int a,b;
ifstream in("A+B.in");
ofstream out("A+B.out");
in>>a>>b;
out<<a+b;
}
