Cod sursa(job #362896)

Utilizator aplace4uheadaplace4uhead aplace4uhead Data 11 noiembrie 2009 11:37:46
Problema Next Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>


ifstream fin("next.in");
ofstream fout("next.out");

int main(){
unsigned long long n,d,c;
fin>>n>>d;
c=n/d;
if(n%d==0)
	fout<<c;