Cod sursa(job #736042)

Utilizator caliuxSegarceanu Calin caliux Data 17 aprilie 2012 19:01:06
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <stdio.h>
using namespace std;
int main(){

	freopen( "adunare.in", "r", stdin );
	freopen( "adunare.out", "w", stdout );
	long long a, b, c;
	scanf( "%lld%lld", &a, &b);
	c = a + b;
	printf( "%lld", c);
}