#include<iostream>
#include<algorithm>
using namespace std;
int main(){
    string name;
    cin>>name;
    cout<<name[0:2];

   
    
}