Cod sursa(job #445731)
Utilizator | Data | 24 aprilie 2010 12:32:50 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.15 kb |
#include<iostream.h>
#include<fstream.h>
int main(){
ifstream p("adunare.in");
ofstream v("adunare.out");
int a,b;
p>>a>>b;
v<<a+b;
return 0;
}