Guest User

Untitled

a guest
Jul 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <iostream>
  2. #include <string.h>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int i;
  9. string a;
  10.  
  11. while(cin >> a)
  12. {
  13. i=a.size();
  14. cout << a[i-1] <<"\n";
  15. }
  16.  
  17. return 0;
  18. }
Add Comment
Please, Sign In to add comment