Skip to content
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Arshlan-Raza
/
DSA_CH
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
DSA_CH
/
macros2.cpp
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
13 lines (8 loc) · 175 Bytes
master
Breadcrumbs
DSA_CH
/
macros2.cpp
Copy path
Top
File metadata and controls
Code
Blame
13 lines (8 loc) · 175 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
#include<bits/stdc++.h>
using namespace std;
#define min(a,b)(((a)<(b))?(a):(b))
int main(){
int x, y;
cin>>x>>y;
cout<<"The minimum value is : "<<min(x,y);
}
You can’t perform that action at this time.