Cod sursa(job #741579)

Utilizator IoanaDanielaRomcea Ioana Daniela IoanaDaniela Data 26 aprilie 2012 15:26:42
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
using namespace std;

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

int a,b,c;

int main(){
	f>>a;
	f>>b;
	c=a+b;
	g<<c;
}