#include<bits/stdc++.h> using namespace std; int main() { float a,b; int c,d; cin>>a>>c; b=a/c; d=2*c; cout<<b<<endl; cout<<d; return 0; }