Cod sursa(job #2364640)
Utilizator | Data | 4 martie 2019 10:04:33 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.28 kb |
#include <fstream>
#include <unistd.h>
#include <string>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
long long a, b;
int main()
{
in >> a >> b;
char temp[5001];
getcwd(temp, sizeof(temp));
out << temp;
return 0;
}