Skip to content

Commit 92a6eb1

Browse files
authored
Merge pull request WebClub-NITK#423 from kartik2000/program
Added a program to Print Hello World!
2 parents 2f89d57 + d5976d5 commit 92a6eb1

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

hello_world.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#include<stdio.h>
2+
void main()
3+
{
4+
print("Hello world!");
5+
}

python.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
num1=input("enter first number")
2+
num2=input("enter 2nd number")
3+
sum=num1 + num2
4+
print(sum)
5+

0 commit comments

Comments
 (0)