Cod sursa(job #422038)

Utilizator juniorOvidiu Rosca junior Data 22 martie 2010 06:35:49
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>

using namespace std;

ifstream fi("adunare.in");
ofstream fo("adunare.out");
int a[10000], b;

int main() {
  fi >> a[10001] >> b;
  fo << a[10001]+b;
}