Submission #1133087

#TimeUsernameProblemLanguageResultExecution timeMemory
1133087jpfr12Split (info1cup19_split)C++20
100 / 100
0 ms328 KiB
#include <bits/stdc++.h>

typedef long long ll;
typedef unsigned long long int ull;
using namespace std;
const ll MOD = (ll)1e9+7;
int MAXN = 1e6;

//classes


//global
string str;

int main(){
  ios_base::sync_with_stdio(false);
  cin.tie(0);
  //ifstream fin("hps.in");
  //ofstream fout("hps.out");
  //stop
  cin >> str;
  int N = str.length();
  int mid = N/2;
  cout << str.substr(0, mid) << " " << str.substr(mid, N) << '\n';
  return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...