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

RGB7401 - Давхар давталт 1

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

Input

Бүхэл тоо өгөгдөнө. 10-аас бага.

Output

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

Example

Input:
5

Output:
5 4 3 2 1
5 4 3 2 1
5 4 3 2 1
5 4 3 2 1
5 4 3 2 1

Нэмсэн: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
2019-10-13 08:58:44












































































































































































































































































































































2019-03-15 09:12:28


Last edit: 2019-03-24 08:26:54
2019-03-01 11:26:16
#include <bits/stdc++.h>
using namespace std;
main()
{ int n,i,j;
scanf("%d",&n);
for(j=1;j<=n;j++)
{ for(i=n;i>=1;i--)
printf("%d ",i); printf("\n"); }

return 0; }
2018-12-20 10:01:02
#include <bits/stdc++.h>
using namespace std;

int main() {
int n,i,j;
cin>>n;
if(n<=10)
{
for(i=5; i>=1; i--)
{
for(j=5; j>=1; j--)
cout<<j<<" ";
cout<<endl;
}

}

// your code here

return 0;
}
2018-12-15 07:05:47









































































































































































2018-12-15 06:46:05











































































2018-12-13 08:07:59
#include <bits/stdc++.h>
using namespace std;

int main(){
int n,i,j;
cin>>n;
if(n<10);
for(i=1;i<=n;i++){
for(j=n;j>0;j--){
cout<<j<<" ";
}
cout<<endl;
cout<<endl;
}
return 0;
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.