Cod sursa(job #933597)
Utilizator | Data | 30 martie 2013 11:02:39 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<iostream.h>
int mai(){
std::ifstream in("date.in");
std::ofstream out("date.out");
int a,b;
in>>a>>b;
out<<a+b;
in.close();
out.close();
}