Cod sursa(job #2297667)
Utilizator | Data | 6 decembrie 2018 10:34:16 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
ifstream in ("aplusbb.in");
ofstream out ("aplusbb.out");
int main()
{
unsigned long long a,b;
in>>a>>b;
out<<a+b*b;
return 0;
}