#include <stdio.h> int main() { int a = 10; double b =13.5264; int c = a/b; printf("%f\n",a/b); printf("%f\n",a+b); printf("%f\n",c); return 0; }