forked from Lucifer6102/Hacktoberfest2k21
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsam1.cpp
35 lines (35 loc) · 917 Bytes
/
sam1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//Pre-Processor Directives, never compiled
#include <bits/stdc++.h>
#define ll long long int
#define N 1000
#define M 1000000007
#define f(i, a, b) for (ll i = (ll)a; i <= (ll)b; i++) // defining for loop forward
#define rf(i, a, b) for (ll i = (ll)a; i >= (ll)b; i--) // defing revwerse for loops
#define po pop_back
#define pb push_back // use for inserting elements
#define lb lower_bound
#define fi first
#define se second
#define mp make_pair
#define bs binary_search
#define debug(x) cout << #x << " = " << x << endl
#define ub upper_bound
#define ibs ios_base::sync_with_stdio(false)
#define cti cin.tie(0)
#define all(x) x.begin(), x.end()
#define PI 3.14159265 //value of pi
#define cot cout.tie(0)
using namespace std;
/**
* @author :: Rishabh
*
*/
int main()
{
char c,a,b;
c='f';
a='s';
b='x';
int sum=c+a+b;
cout<<sum;
}