#include <iostream>
using namespace std;
int main() {
long long n, aux, z = 1;
cin >> n;
long long minim = n;
while (z <= n)
{
aux = n / (z * 10) * z + n % z;
if (aux < minim)
{
minim = aux;
}
z = z * 10;
}
cout << minim;
return 0;
}
// n = 5912
// 591 = 5912 / 10 * 1 + 5912 % 1
// 592 = 5912 / 100 * 10 + 5912 % 10
// 512 = 5912 / 1000 * 100 + 5912 % 100
// 912 = 5912 / 10000 * 1000 + 5912 % 1000