/******************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
int main()
{
double t = 0.1 + 0.2;
printf("%s\n", t == 0.3 ? "true" : "false");
printf("%s\n", t == 0.30000000000000004 ? "true" : "false");
return 0;
}