Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a;
  8.  
  9. cin>>a;
  10.  
  11. int k=a*a;
  12. int u=a*a*a;
  13.  
  14. cout<<k<<u;
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement