Cod sursa(job #359982)

Utilizator worstbyteelev gigel worstbyte Data 29 octombrie 2009 10:26:49
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include<fstream.h>

int main(){
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b,s;
fin>>a>>b;
s=a+b;
fout<<s;
return 0;
}