Mai intai trebuie sa te autentifici.
Cod sursa(job #1233674)
Utilizator | Data | 25 septembrie 2014 20:50:31 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
# include <fstream>
using namespace std;
int a=131,b=245,s;
int main()
{
ifstream f("1.in");
ofstream g("1.out");
f>>a>>b;
s=a+b;
{
g<<s;
}
return 0;
}