#include <stdio.h> int main () { int a = 100; int b = 3; double c ; c= a/100; printf("double(%.2lf)\n",c); return 0; }