You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<b>Focus on the positive</b> <a class=right href="https://hyperskill.org/learn/step/5925">Open on JetBrains Academy</a>
<br><br>
<html>
<head></head>
<body>
<p>Write a program that reads an integer value from the input and checks if it is positive.</p>
<p><strong>Hints</strong>:</p>
<p>0 <strong>is not</strong> a positive number.</p>
<p>A comparison already <strong>returns a boolean</strong>, so if you need the result of the comparison, you can print it, like this <code class="java">print(5 > 9) # False</code></p>