CodechefAug 01, 2025

Counting Words

Hazrat Ali

Codechef

Harsh was recently gifted a book consisting of N pages. Each page contains exactly M words printed on it. As he was bored, he decided to count the number of words in the book.

Help Harsh find the total number of words in the book.

Input Format

  • The first line of input will contain a single integer T, denoting the number of test cases.
  • Each test case consists of two space-separated integers on a single line, N and M — the number of pages and the number of words on each page, respectively.

Output Format

For each test case, output on a new line, the total number of words in the book.

Constraints

  • 1≤T≤100
  • 1≤N≤100
  • 1≤M≤100

Sample 1:

Input
4
1 1
4 2
2 4
95 42
Output
1
8
8
3990

Solution

T = int(input())

for _ in range(T):
    N, M = map(int, input().split())
    print(N * M)



 

Comments