Cod sursa(job #1293617)

Utilizator grijincugGabriel Grijincu grijincug Data 16 decembrie 2014 09:56:34
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.26 kb
// class000.cpp : Defines the entry point for the console application.
//

#include <iostream>
#include <fstream>
using namespace std;

ifstream f("adunare.in");
ofstream g("adunare.out");

unsigned int x, y;

int main(){
	f >> x >> y;
	g << x + y;
}