Guest User

oo

a guest
Jan 4th, 2018
94
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 s;
  8. int n=2;
  9. cin >> s;
  10. if (n==0) n=1;
  11.  
  12. else
  13. while (s---1)
  14. {
  15. n*=2;
  16. n%=10;
  17. }
  18.  
  19. cout <<n;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment