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.|

RGB7400 - Давхар давталт 0

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

Input

Натурал тоо өгөгдөнө. 10-аас бага.

Output

Өгөгдсөн тоо болон тоо хүртэлх тоонуудыг жишээн дээрх хэлбэрээр хэвлэ. Мөрөн дэх тоонууд хооронд зай байхгүй.

Example

Input:
5
Output:
12345
12345
12345
12345
12345

Нэмсэн:Bataa
Огноо:2013-01-14
Хугацааны хязгаарлалт: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
2021-01-21 05:51:51







































































































































































































































































































































hetsuu bodlogod copydood ashigla
2021-01-21 04:37:13
#include<cstdio>

int main(){
int n, i, j;
scanf("%d", &n);
for(i = 1; i <= n; i++){
for(j = 1; j <= n; j++) printf("%d", j);
printf("\n");
}
}
2020-08-09 11:41:49
uugnaa huulaad uzeeree
aluulav!!!!
2020-01-06 05:51:20
//11-4 bayarjargal //
#include <iostream>
using namespace std;

int main(){
int n,i,j;
cin>>n;
for(i=1;i<=n;i++){
for(j=1;j<=n;j++){
cout<<j;
}
cout<<endl;
cout<<endl;
}
return 0;
}
2019-11-30 06:44:35
#include <cstdio>
int main(){
int a;
scanf("%d",&a);
for(int i=1;i<=a;i++){
for(int j=1;j<=a;j++){
printf("%d",j);
}
printf("\n");
}
}
2019-10-19 06:35:04
#include<cstdio>
int main(){
int a;
scanf("%d", &a);
for(int i=0; i<a ; i++)
{

for(int j=1 ; j<=a ; j++)
{
printf("%d", j);
}
printf("\n" );
}
2019-10-13 07:22:51














































































































































































































































































































































































































































































































































































































































s0..
2019-10-12 06:50:57











































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































Last edit: 2019-10-12 06:53:44
2018-12-18 10:17:36
#include <bits/stdc++.h>
using namespace std;

int main() {
int j,i,n;
cin>>n;
for(i=1; i<=n; i++)
{
for(j=1; j<=n; j++)
cout<<j;
cout<<endl;
}
return 0;
}
easy in the daisy
2018-12-16 04:11:47
































































































































































































































































































© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.