Cod sursa(job #601878)

Utilizator bandrei2408Bitca Andrei bandrei2408 Data 8 iulie 2011 02:49:42
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>

using namespace std;

int main(){
long int a,b;
ifstream in("adunare.in");
ofstream out("adunare.out");
in>>a;
in>>b;
out<<(a+b);
in.close();
out.close();}