Cod sursa(job #750130)
Utilizator | Data | 20 mai 2012 22:33:03 | |
---|---|---|---|
Problema | Ridicare la putere in timp logaritmic | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva educationala | Marime | 0.16 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main(){
int a,b;
f >> a >> b;
g << a + b;
}