#include<iostream>
using namespace std;
int main (){
     int c,k,m = 10;
     scanf("%d%d",&c,&k);
     int rez = 0;
     rez = c / 10;
     printf("%d",rez * 10);
     //system("pause");
     return 0;
}
