Cod sursa(job #440756)
Utilizator | Data | 12 aprilie 2010 14:51:48 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream.h>
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long a,b;
int main(){
fin>>a>>b;
fout<<a+b<<endl;
return 0;}