Cod sursa(job #422039)

Utilizator juniorOvidiu Rosca junior Data 22 martie 2010 06:39:46
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>

using namespace std;

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

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