Ankit_132

D

Jun 12th, 2024
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5.     int t;
  6.     cin>>t;
  7.    
  8.     while(t--){
  9.         long long int a;
  10.         cin>>a;
  11.        
  12.         if(a==2)
  13.             cout<<4<<" "<<8<<"\n";
  14.         else
  15.             cout<<2*a<<" "<<a*a<<"\n";
  16.     }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment