mirror of
https://github.com/Estom/notes.git
synced 2026-04-01 01:50:32 +08:00
10 lines
124 B
C++
10 lines
124 B
C++
#include<iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main(){
|
|
int a=1;
|
|
int b=2;
|
|
int c=(b<<1);
|
|
cout<<(a|b)+c<<endl;
|
|
} |