#include using namespace std; int main() { double a,b,c; double number=9.12345678; a=10; b=5; c=b/a; cout << c << endl; cout << number; return 0; }