#include<stdio.h>
#include<conio.h>
void main()
{
longint sum=0,i,n;
clrscr();
printf("\n Please Give The Value of N: ");
scanf("%ld",&n);
for(i=1;i<=n;i++)
{
printf("\n 5 * %ld = %ld",i,5*i);
}
getch();
}
****************************** OUTPUT *********************************
Please Give The Value of N: 5
5 * 1 = 5
5 * 2 = 10
5 * 3 = 15
5 * 4 = 20
5 * 5 = 25
************************************************************************