Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7210 - Тооны хүрд

Өгөгдсөн тооны хүрдийг дараах хэлбэрээр гарга.

Input

n натурал тоо өгөгдөнө. n<=10.

Output

n тооны хүрд нэг нэг мөрөнд хэвлэ.

Example

Input:
3

Output:
3*1=3
3*2=6
3*3=9
3*4=12
3*5=15
3*6=18
3*7=21
3*8=24
3*9=27
3*10=30

Нэмсэн:Bataa
Огноо:2011-06-21
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2022-03-30 10:41:13
#include<stdio.h>
main()
{
int b,c;
scanf("%d",&b);
for(c=1; c<=10; c++)
printf("%d*%d=%d\n",b, c, b*c );
}



hhahahh EZ ooy
2022-03-27 10:56:27
#include<stdio.h>
int main()
{
int a,i=1;
scanf("%d",&a);
for(i=1;i<=10;i++)
{
printf("%d*%d=%d\n",a,i,a*i);
}
}
oonh oni-chaan yamaatai gudas<333
2022-03-14 08:42:35
























































































































































































hha
2022-03-14 03:04:27
Python дээр хийсэн чн чаддаггүй э алдаа нь юу юм бол?
a = int(input())
x = 1
while x <= 10:
print(x,'*',a,'=',x*a)
x += 1
2022-03-04 12:23:02
#include <iostream>
using namespace std;

int main() {
int a,b,n,niilber=0,urjver=1,c,i;
cin>>a>>b>>c;
for (i = 1; i<=10; i++){
cout <<a<<'*'<<i<<'='<<a*i<<endl;
}
return 0;
}
ezzzzz
2022-03-04 11:24:18
usnii zasalt like share
2022-01-13 06:07:36
kk

Last edit: 2022-01-13 06:08:42
2022-01-06 09:26:20


Last edit: 2022-01-06 09:26:33
2021-11-12 16:55:51
#include<stdio.h>
int main()
{
int a,b=1;
scanf("%d",&a);
while(b<=10)
{
printf("%d*%d=%d\n",a,b,a*b);
b++;
}
}
mai suguudaa hhahhahhah
2021-10-11 08:45:15
#include<iostream>
using namespace std;
int main(){
int n,i;
cin>>n;
for(i=1; i<=10; i++){
cout<<n<<"*"<<i<<"="<<n*i<<endl;
}
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.