#include<bits/stdc++.h>
using namespace std;
int main(){
int x,y,w;
cin>>x>>y;
w=y/x*5;
cout<<w;
}
/**************************************************************
Problem: 1417
User: zhengzihao3
Language: C++
Result: Accepted
Time:20 ms
Memory:2072 kb
****************************************************************/