If practice 1


Submit solution

Points: 1
Time limit: 1.0s
Memory limit: 64M

Author:
Problem type
Allowed languages
C, C++, Python3

This practice problem will require you to programme basic if conditions and standard C IO Library. Later we will demonstrate how to use IOstream, but for now please use scanf and printf since these are also essential knowledge.

Your programme will be expecting inputs made up of 2 different numbers, and your task is to determine whether the first number is greater than the other.

Input Specification

The first line will contain two space-separated integers whose absolute value is less than \(1\,000\,000\,000\).

Output Specification

The first line should contain the words Thinking.. You should output Yes on the second line only if the first number is greater than the second.

Sample Input 1

    78 24

Sample Output 1

    Thinking.
    Yes

Sample Input 2

    -12 13

Sample Output 2

    Thinking.

Comments

There are no comments at the moment.