Cod sursa(job #168183)
Utilizator | Data | 30 martie 2008 20:43:25 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
// Adunare
#include <fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main(){
long long a,b;
fin>>a>>b;
fout<<a+b;
fout.close();
}