Cod sursa(job #1521422)

Utilizator Andrei.GheorgheAndrei Gheorghe Andrei.Gheorghe Data 10 noiembrie 2015 13:53:09
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
    freopen("adunare.in","r",stdin);
    freopen("adunare.out","w",stdout);
    int a,b;
    cin>>a>>b;
    cout<<a+b;
    return 0;
}