Cod sursa(job #810718)

Utilizator MythrandillMadalin Iordache Mythrandill Data 10 noiembrie 2012 21:01:31
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
	int x,y;
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>x>>y;
	g<<x+y;
}