Cod sursa(job #1573495)

Utilizator 3DwArDPauliuc Edward 3DwArD Data 19 ianuarie 2016 18:59:02
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <bits/stdc++.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
    int a,b;
int main()
{
    f>>a>>b;
    int c=a+b;
    g<<c;
    return 0;
}