fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int age;
  6.  
  7. cout << "How old are you? ";
  8. cin >> age;
  9.  
  10. if (age >= 18) {
  11. cout << "You are pretty big";
  12. } else {
  13. cout << "You are just kid";
  14. }
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5288KB
stdin
5
stdout
How old are you? You are just kid