Problems
345 - Smaller or Larger
SUBMIT PROBLEM

Smaller or Larger

Time Limit: 1 sec

 

The Problem

You will be given two numbers A and B. After adding immediate next two numbers of A with A, if A is larger than B then print A will be too larger than B otherwise print it will be too smaller than B.

 

The Input

The input contains a series of line. Each line contains two integer A (A <=100) and B (B <= 100). Input will terminated by EOF.

 

The Output

For each line of input the output will print “A is too larger than B” if A is larger than B otherwise print “A is too smaller than B”.

 

Sample Input

12 59

12 13

 

Sample Output

A is too smaller than B

A is too larger than B

 

 

 

 

Problem Setter: Samia Safa Ahmed