Cod sursa(job #2147830)
Utilizator | Data | 1 martie 2018 01:27:50 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.28 kb |
// ConsoleApplication1.cpp : Defines the entry point for the console application.
//
#include <fstream>
using namespace std;
int main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
int a;
int b;
in >> a;
in >> b;
out << a + b;
}