Cod sursa(job #1667584)

Utilizator c0ldcold u c0ld Data 29 martie 2016 01:45:44
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>

using namespace std;

ifstream fi("adunare.in");
ofstream fo("adunare.out");

int main() {
  int a, b;

  fi >> a >> b;
  fo << a + b << '\n';

  return 0;
}