A. Programming is Very Easy
Problem link
https://algo.codemarshal.org/contests/diu-122-fl16-termwork/problems/A
Score: 1
CPU: 1s
Memory: 512MB
CPU: 1s
Memory: 512MB
Habib is very new to programming. Seeing his seniors participate in different programming contests and working in famous software companies has caught his attention and motivated him to code. But he is a little scared as he knows nothing about programming. He has come to you, a great programmer, for help. You are to guide him to his path of becoming a great programmer like yourself! As his first lesson, you have given him the simplest task possible, to print the great "Hello World!". For this, all Habib has to do is to is to write the following code exactly and just submit:
#include <stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
}
Input
There is no sample in this problem. Only write the code exactly and submit.
Output
Hello World!
Solution
#include<stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
}
No comments:
Post a Comment