Cod sursa(job #2209506)
Utilizator | Data | 3 iunie 2018 18:12:14 | |
---|---|---|---|
Problema | GFact | Scor | 15 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream in("gfact.in");
ofstream out("gfact.out");
int main()
{
int a,q,b=0;
in>>a>>q;
b=a;
out<<b;
return 0;
}