git.sophuwu.com > termcalc   
              0
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
             #ifndef TERMCALC_CALC_H
#define TERMCALC_CALC_H

#include <iostream>
#include <cfloat>
#include <cmath>
#include <string>
typedef long double flt_t;
typedef long long int_t;

typedef std::string strr;

#endif //TERMCALC_CALC_H