Cod sursa(job #1016111)

Utilizator tedy02Deaconu Tudor-Andrei tedy02 Data 25 octombrie 2013 19:46:04
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>

using namespace std;

ifstream f("A+B.in");
ofstream g("A+B.out");
int A, B;

int main()
{
  f>>A>>B;
  g<<A+B;
  return 0;
}