-
Notifications
You must be signed in to change notification settings - Fork 0
/
task.html
14 lines (14 loc) · 974 Bytes
/
task.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<b>Guessing game</b> <a class=right href="https://hyperskill.org/learn/step/6382">Open on JetBrains Academy</a>
<br><br>
<html>
<head></head>
<body>
<p>You are playing a guessing game with a user. Imagine that you came up with an integer stored in a variable <code class="java">set_number</code>.</p>
<p>Check if <code class="java">set_number</code> is equal to the product of two integers entered by the user.</p>
<p><strong>The input format:</strong></p>
<p>Two lines containing integer numbers for you to multiply.</p>
<p><strong>The output format:</strong></p>
<p><code class="java">True</code> if the user guessed correctly and <code class="java">False</code> otherwise.</p>
</body>
</html><br><b>Sample Input:</b><br>3<br>11<br><b>Sample Output:</b><br>False<br><br><br><font color="gray">Memory limit: 256 MB</font><br><font color="gray">Time limit: 15 seconds</font><br><br>
<a href="https://hyperskill.org/learn/step/5920">Show topic summary</a>