Cod sursa(job #1673128)

Utilizator AlexVulpoiuAlexandru Vulpoiu AlexVulpoiu Data 3 aprilie 2016 14:44:38
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <cstdio>
using namespace std;
int a,b;
int main()
{
    freopen("adunare.in","r",stdin);
    freopen("adunare.out","w",stdout);
    scanf("%d",&a);
    scanf("%d",&b);
    a+=b;
    printf("%d",a);
    return 0;
}