Cod sursa(job #230501)

Utilizator oltean_florinoltean florin-ioan oltean_florin Data 14 decembrie 2008 01:51:48
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>

using namespace std;

int main() {
  ifstream fin("adunare.in");
  ofstream fout("adunare.out");
  
  int a, b, s;
  
  fin>>a>>b;
  s = a + b;
  
  fout<<s;
  
  return 0;  
}