#include <stdio.h> int main () { float a = 3.3e-5; printf("a = %f\n",a); float b = 3.3e-6; printf("b = %f\n",b); return 0; }