Cod sursa(job #1927150)

Utilizator whitewolf3131Ursu Laurentiu Cristian whitewolf3131 Data 14 martie 2017 22:47:17
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <stdio.h>

using namespace std;

int main()
{
    FILE *in, *out;
    in = fopen("adunare.in", "r");
    out = fopen("adunare.out", "w");
    int a, b;
    fscanf(in, "%d%d", &a, &b);
    fprintf(out, "%d", a+b);
    return 0;
}