Cod sursa(job #394181)

Utilizator Ivanescu.MihaiIvanescu Dan Mihai Ivanescu.Mihai Data 10 februarie 2010 17:32:11
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include <fstream.h>
int main() {

ifstream fin("Adunare.in");
ofstream fout("Adunare.out");
int a,b;
fin>>a>>b;
fout<<a+b;
return 0;
}