CJCoding With Joseph

Speeding Ticket

The speed limit is 60. Read a driver's speed (an integer) with scanf. If the speed is greater than 60, print exactly:

Ticket

Otherwise print exactly:

No ticket

No trailing newline. For input 75 the output is Ticket; for input 55 the output is No ticket.

Expected Output:

Ticket
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
75\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.