Cod sursa(job #564845)

Utilizator Andrey29Godja Andrei Andrey29 Data 27 martie 2011 11:59:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
using namespace std;

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