Cod sursa(job #642512)

Utilizator Yo4everyoungDan Mircea Mirea Yo4everyoung Data 1 decembrie 2011 16:19:22
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int main ()
{ f>>a>>b; g<<a+b; return 0; }