Advertisement
Guest User

Untitled

a guest
Feb 10th, 2012
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstring>
  3. #include <cstdio>
  4. #include <cmath>
  5. using namespace std;
  6. typedef long long ll;
  7. int main()
  8. {
  9.   string s;
  10.   int n;
  11.   cin >> n;
  12.   getline(cin, s);
  13.   cout << s << "#";
  14.   getline(cin, s);
  15.   cout << s;
  16.   return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement