009. Hello CodeRams
009. Hello CodeRams
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
A hello world program is an essential starting point for all coders. In this problem, write a program to print out "Hello CodeRams".
In Python, you can print text using the print command. So, for this problem, type print("Hello CodeRams").
You can download Python here.
Output
Output "Hello CodeRams"
Example
input
Copy
there is no input for this problem
output
Copy
Hello CodeRams
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("Hello CodeRams") |
Comments
Post a Comment
Please give us your valuable feedback