fork download
  1. #include <iostream>
  2. #include <cstdio>
  3. using namespace std;
  4.  
  5. int main() {
  6. // your code goes here
  7. int n;
  8. char bf[1024]={};
  9. (cin >> n).get();
  10. gets(bf);
  11.  
  12. cout << "n" << n;
  13. cout << "bf" << bf;
  14. return 0;
  15. }
Success #stdin #stdout 0s 3344KB
stdin
100
ASDF
stdout
n100bfASDF