Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions submissions/2018/ankit/add.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
a,b=map(int,input().split())
print(a+b)
2 changes: 2 additions & 0 deletions submissions/2018/ankit/hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
print("hello world")

7 changes: 7 additions & 0 deletions submissions/2018/ankit/mul.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"hello world"<<endl;
return 0;
}
5 changes: 5 additions & 0 deletions submissions/2018/ankit/r.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
func mini(a,b){
if(a<b){
console.log(a)
else
console.log(b)