#include <stdio.h> int main(void) { printf("%d\n", 1/3*3); printf("%f\n", 1/3*3); printf("%d\n", 1.0/3*3); printf("%f\n", 1.0/3*3); return 0; }