Cod sursa(job #885310)

Utilizator linerunnerMihai Ion linerunner Data 21 februarie 2013 20:11:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <fstream>
#include <iostream>
using namespace std;
long long s,a,b;
int main()
{ ifstream f("adunare.in");
  ofstream g("adunare.out");
  f>>a>>b;
  s=a+b;
  g<<s;
  f.close();
  g.close();
  return 0;
	
	
	
	
}