fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int n;
  7. cin>>n;
  8. for(int i=0;i<n;i++)
  9. {
  10. int x;
  11. cin>>x;
  12. cout<<15*x;
  13. cout<<endl;
  14. }
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0.01s 5492KB
stdin
2
3
8
stdout
45
120