Pagini recente » Cod sursa (job #1460027) | Rating Iovecu Cornel Mihai (miha) | Cod sursa (job #1514081) | Cod sursa (job #1586616) | Cod sursa (job #2371049)
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: main.cpp
* Author: ioan
*
* Created on March 6, 2019, 2:56 PM
*/
#include <cstdlib>
#include <fstream>
using namespace std;
/*
*
*/
int main(int argc, char** argv) {
ifstream f("adunare.in");
ofstream g("adunare.out");
int a, b;
f >> a;
f >> b;
g << a + b;
return 0;
}