Cod sursa(job #611476)

Utilizator SnoopofixAndrei Dobre Snoopofix Data 1 septembrie 2011 18:17:30
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<iostream>
#include<fstream>
using namespace std;
int main()
{int a,b;
ifstream f("adunare.in");
ofstream t("adunare.out");
f>>a; f>>b; t<<a+b;
return 0;
}