URI Online Judge Solution 2413 Internet search Using Python Programming Language.
João did a search on his favorite search site, and found the answer he was looking for in the third link listed. In addition, he saw on the website that people had clicked on this link before. João had previously read, also on the Internet, that the number of people who click on the second link listed is double the number of people who click on the third link listed. In that reading, he also found that the number of people who click on the second link is half the number of people who click on the first link.
João is intrigued to find out how many people clicked on the first link in the search, and since you are a friend of his, you want his help in this task.
InputEach test case has only one number, t (1 ≤ t ≤ 1000), which represents the number of people who clicked on the third search link.
OutputFor each test case, print only one line, containing only one integer, indicating how many people clicked on the first link in this search.
Entry Examples | Output Examples |
two | 8 |
25 | 100 |
URI 2413 Solution in Python:
N = int(input())
N = N*2*2
print(N)
Comments
Post a Comment