document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int a,b,x;
  6.     cout<<"Inputkan Angka = ";
  7.     cin>>x;
  8.     cout<<endl;
  9.     for(a=1;a<=x;a++){
  10.         for(b=a;b<=x;b++){
  11.             cout<<b;
  12.             if(b!=x)cout<<" ";
  13.         }
  14.         cout<<endl;
  15.     }
  16.     return 0;
  17. }
');