Cod sursa(job #302694)

Utilizator zoltrixOLARU SABIN zoltrix Data 9 aprilie 2009 10:24:10
Problema Next Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<fstream.h>;
void main()
{ ifstream f("next.in");
  ofstream g("next.out");
  unsigned long  n,d;
  f>>n>>d;
if(int(n%d)==0) g<<n;
    else g<<n+d-n%d;
f.close();
g.close();
}