/*
 * Divider 
 */

#include <iostream>;
using namespace std;

int main() {
  //DECLARATIONS
  int x;
  int y;
  double ans;
 
  //USER INPUT
  cout << "\n\nenter x: " << endl;
  cin >> x;
  cout << "enter y: " << endl;
  cin >> y;

  //COMPUTATION
  ans = x/(float)y;

  //OUTPUT
  cout << "\n\nans: " << ans  << endl;


  return 0;
}
