fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int x;
  5. int main() {
  6.  
  7. cin>>x;
  8.  
  9. for(int i=1; i<= 11; i++)
  10. cout<<x*i<<"\t";
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5324KB
stdin
6
stdout
6	12	18	24	30	36	42	48	54	60	66