Skip to content

Instantly share code, notes, and snippets.

@ik11235
Created June 27, 2015 14:26
Show Gist options
  • Save ik11235/ca9cdbd656b09340c344 to your computer and use it in GitHub Desktop.
Save ik11235/ca9cdbd656b09340c344 to your computer and use it in GitHub Desktop.
#include<algorithm>
#include<iostream>
using namespace std;
int main()
{
string s;
cin>>s;
int n;
cin>>n;
n--;
cout<<s[n/5]<<s[n%5]<<endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment