Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma GCC optimize("O3")
- #include <bits/stdc++.h>
- using namespace std;
- #define int long long
- #define double long double
- #define fastio ios_base::sync_with_stdio(0); cin.tie(0)
- signed main()
- {
- fastio;
- /*
- int
- double
- bool ok = true; // 1 0
- */
- // Menim
- // M
- // e
- // n
- // i
- // m
- // nasa2011
- /*
- cout << "Hello\nCelal\n" << "\n";
- char c = 'A';
- cout << c << '\n'; // A
- string s = "Hello\nYusif";
- cout << s << '\n';
- */
- /*
- string s;
- cin >> s;
- bool ok = true;
- for(int i = 0; i < s.size(); i++){
- if(s[i] >= '0' && s[i] <= '9')
- continue;
- ok = false;
- }
- if(ok)
- cout << "Yes";
- else
- cout << "No";
- */
- /*
- string a , b;
- cin >> a >> b;
- a += b;
- cout << a;*/
- /*
- string s = "c9aAbB0 ";
- sort(s.begin() , s.end());
- cout << s; // 09ABabc
- */
- /*
- char c = 'C';
- cout << c - 'A';
- */
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement