Mai intai trebuie sa te autentifici.
Cod sursa(job #1311860)
Utilizator | Data | 8 ianuarie 2015 17:44:32 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.36 kb |
// Suma.cpp : Defines the entry point for the console application.
//
//#include "stdafx.h"
#include <stdio.h>
int main(int argc, char* argv[])
{
long a, b;
FILE* f= fopen("adunare.in", "r");
FILE* g = fopen("adunare.out", "w");
fscanf(f, "%ld", &a);
fscanf(f, "%ld", &b);
fprintf(g, "%ld\n", a + b);
fclose(f);
fclose(g);
return 0;
}