Cod sursa(job #1312387)
Utilizator | Data | 9 ianuarie 2015 14:36:18 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.38 kb |
// APlusB.cpp : main project file.
//#include "stdafx.h"
#include <stdio.h>
#include <iostream>
#include <fstream>
//using namespace System;
using namespace std;
int main(/*array<System::String ^> ^args*/)
{
long a, b;
ifstream fin("adunare.in");
fin >> a;
fin >> b;
fin.close();
ofstream fout("adunare.out");
fout<<a+b;
fout.close();
return 0;
}