Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <cstdlib>
  4.  
  5. using namespace std;
  6.  
  7. int main(){
  8.     string s, s_temp;
  9.     getline(cin, s_temp);
  10.     getline(cin, s);
  11.     char ch = s_temp[0];
  12.     cout << ch << endl << s;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement