Cod sursa(job #1491486)

Utilizator VladArmeanu14Vlad Armeanu VladArmeanu14 Data 25 septembrie 2015 16:15:58
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
using namespace std;
ifstream in ("gigel.in");
ofstream out ("gigel.out");
int main()
{int a,b,s;
in>>a>>b;
s=a+b;
out<<s;
return 0;
}