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