#include <stdio.h> int main() { int temperature = 30; if (temperature > 25) { printf("It is a hot day.\n"); } return 0; }
Click Run to execute this code.