Cod sursa(job #1259197)
Utilizator | Data | 9 noiembrie 2014 20:11:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.3 kb |
//
// main.cpp
// a
//
// Created by Alex Rancea on 09/11/14.
// Copyright (c) 2014 Alex Rancea. All rights reserved.
//
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main() {
int a,b;
f>>a>>b;
g<<a+b;
return 0;
}