#include<bits/stdc++.h> 
using namespace std;
int main(){ 
  double a;
  int b; 
  cin>>a>>b;
  printf("%.3lf",a/b);
  cout<<endl;
  cout<<b*2;
  return 0;
}

0 comments

No comments so far...