Cod sursa(job #2240370)

Utilizator AlexAlAxAxelAlAx AlAx AlexAlAxAxel Data 13 septembrie 2018 10:17:55
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>

using namespace std;
int a,b,c;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
return 0;
}