#include<stdio.h>
int main()
{
int i, n;
scanf("%d", &n);
for(i=1; i<=10; i++)
{
printf("%d x %d = %d\n", i, n, i*n);
}
return 0;
}
int main()
{
int i, n;
scanf("%d", &n);
for(i=1; i<=10; i++)
{
printf("%d x %d = %d\n", i, n, i*n);
}
return 0;
}
Comments
Post a Comment