View Code of Problem 86

#include<stdio.h>
int main()
{
	int a,b,i,y=0;
	scanf("%d %d",&a,&b);
	for(i=1;i<=b;i++)
	{
		y=y*10+a;
	}
	printf("%d",y);
	return 0;
}

Double click to view unformatted code.


Back to problem 86