Cod sursa(job #1702361)
Utilizator | Data | 15 mai 2016 09:17:46 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | preitm2016 | Marime | 0.2 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
unsigned int a,b;
long long s;
int main()
{
f>>a>>b;
s=a+b;
g<<s;
return 0;
}