Cod sursa(job #362900)

Utilizator val3kovidenie valentin val3k Data 11 noiembrie 2009 11:47:27
Problema Next Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>

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

int main(){
int n,c,d;
fin>>n>>d;
c=n/d;
if(c) fout<<(c+1)*d;
else
	fout<<n;

	return 0;
	}