Cod sursa(job #1311865)
Utilizator | Data | 8 ianuarie 2015 17:51:18 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.37 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;
long 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;
}