#include<iostream> using namespace std; int main(){ float f; double d; cout << sizeof(f)<< " " << sizeof(d) << endl; return 0; }