Cod sursa(job #1303577)
Utilizator | Data | 28 decembrie 2014 08:05:53 | |
---|---|---|---|
Problema | Loto | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
#include <math.h>
#include <algorithm>
using namespace std;
int main()
{
ifstream f("ako.in");
ofstream g("ako.out");
unsigned long long n ,k ,p;
f>>n>>k>>p;
g<<(n*k*100)/p;
return 0;
}