Skip to content

Commit

Permalink
formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
Archit669 committed Feb 1, 2024
1 parent 46896e0 commit 14e074e
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions archit/hello.cpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
#include <bits/stdc++.h>
using namespace std;
#include <iostream>

int main(){
int main() {
int n;




cin >> n;
cout << "hello world" << endl;
std::cin >> n;
std::cout << "hello world" << std::endl;
return 0;




}

0 comments on commit 14e074e

Please sign in to comment.