#include #include using namespace std; // The skeleton of a solution int main () { int tempC; cin >> tempC; if (tempC > 0) { if (tempC < 100) { // liquid } else { // gas } } else { // ICE! } }