Skip to content

Instantly share code, notes, and snippets.

@modos
Created July 16, 2022 01:31
Show Gist options
  • Save modos/46ee45fa6b0812f777f94e93f14a9a8e to your computer and use it in GitHub Desktop.
Save modos/46ee45fa6b0812f777f94e93f14a9a8e to your computer and use it in GitHub Desktop.
یخدارچی
/******************************************************************************
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 <iostream>
using namespace std;
int main()
{
int t;
cin >> t;
if(t > 100){
cout << "Steam";
}else if (t < 0){
cout << "Ice";
}else {
cout << "Water";
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment