- min(a,b)
题解
- 2024-4-20 19:38:59 @
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define TRACE 1 #define tcout TRACE && cout
#define fst ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define int long long
const int P = 998244353; const int INF = 0x3f3f3f3f3f3f3f3f;
const int N = 1e6 + 10, M = 2e6 + 10; signed main() { int a , b; cin >> a >> b ; int y = min(a , b); cout << y; return 0; }
0 comments
No comments so far...
Information
- ID
- 601
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 3
- Tags
- (None)
- # Submissions
- 35
- Accepted
- 22
- Uploaded By