public class dd {
public static void main(String[] args) {
// TODO Auto-generated method stub
fun(5);
}
public static void fun(int n){
int count=n;
int tmp=n;
while(count>0){
tmp=n;
for(int i=0;iSystem.out.print(tmp-- +" ");
}
System.out.print('\n');
count--;
}
}
}