1*3ee4fc2aSCody Peter MelloBEGIN{foo=6;print foo/2}
2*3ee4fc2aSCody Peter MelloBEGIN{foo=10;foo/=2;print foo}
3*3ee4fc2aSCody Peter Mello/=/ {print $0}
4*3ee4fc2aSCody Peter Mello/==/ {print $0}
5*3ee4fc2aSCody Peter Mello/\+=/ {print $0}
6*3ee4fc2aSCody Peter Mello/\*=/ {print $0}
7*3ee4fc2aSCody Peter Mello/-=/ {print $0}
8*3ee4fc2aSCody Peter Mello/\/=/ {print $0}
9*3ee4fc2aSCody Peter Mello/%=/ {print $0}
10*3ee4fc2aSCody Peter Mello/^=/ {print $0}
11*3ee4fc2aSCody Peter Mello/!=/ {print $0}
12*3ee4fc2aSCody Peter Mello/<=/ {print $0}
13*3ee4fc2aSCody Peter Mello/>=/ {print $0}
14*3ee4fc2aSCody Peter Mello!/=/ {print $0}
15*3ee4fc2aSCody Peter Mello!/==/ {print $0}
16*3ee4fc2aSCody Peter Mello!/\+=/ {print $0}
17*3ee4fc2aSCody Peter Mello!/\*=/ {print $0}
18*3ee4fc2aSCody Peter Mello!/-=/ {print $0}
19*3ee4fc2aSCody Peter Mello!/\/=/ {print $0}
20*3ee4fc2aSCody Peter Mello!/%=/ {print $0}
21*3ee4fc2aSCody Peter Mello!/^=/ {print $0}
22*3ee4fc2aSCody Peter Mello!/!=/ {print $0}
23*3ee4fc2aSCody Peter Mello!/<=/ {print $0}
24*3ee4fc2aSCody Peter Mello!/>=/ {print $0}
25*3ee4fc2aSCody Peter Mello$0~/=/ {print $0}
26*3ee4fc2aSCody Peter Mello$0~/==/ {print $0}
27*3ee4fc2aSCody Peter Mello$0~/\+=/ {print $0}
28*3ee4fc2aSCody Peter Mello$0~/\*=/ {print $0}
29*3ee4fc2aSCody Peter Mello$0~/-=/ {print $0}
30*3ee4fc2aSCody Peter Mello$0~/\/=/ {print $0}
31*3ee4fc2aSCody Peter Mello$0~/%=/ {print $0}
32*3ee4fc2aSCody Peter Mello$0~/^=/ {print $0}
33*3ee4fc2aSCody Peter Mello$0~/!=/ {print $0}
34*3ee4fc2aSCody Peter Mello$0~/<=/ {print $0}
35*3ee4fc2aSCody Peter Mello$0~/>=/ {print $0}
36*3ee4fc2aSCody Peter Mello$0!~/=/ {print $0}
37*3ee4fc2aSCody Peter Mello$0!~/==/ {print $0}
38*3ee4fc2aSCody Peter Mello$0!~/\+=/ {print $0}
39*3ee4fc2aSCody Peter Mello$0!~/\*=/ {print $0}
40*3ee4fc2aSCody Peter Mello$0!~/-=/ {print $0}
41*3ee4fc2aSCody Peter Mello$0!~/%=/ {print $0}
42*3ee4fc2aSCody Peter Mello$0!~/^=/ {print $0}
43*3ee4fc2aSCody Peter Mello$0!~/!=/ {print $0}
44*3ee4fc2aSCody Peter Mello$0!~/<=/ {print $0}
45*3ee4fc2aSCody Peter Mello$0!~/>=/ {print $0}
46*3ee4fc2aSCody Peter Mello{if(match($0,/=/))print $0}
47*3ee4fc2aSCody Peter Mello{if(match($0,/\=/))print $0}
48*3ee4fc2aSCody Peter Mello{if(match($0,/==/))print $0}
49*3ee4fc2aSCody Peter Mello{if(match($0,/\+=/))print $0}
50*3ee4fc2aSCody Peter Mello{if(match($0,/\*=/))print $0}
51*3ee4fc2aSCody Peter Mello{if(match($0,/-=/))print $0}
52*3ee4fc2aSCody Peter Mello{if(match($0,/%=/))print $0}
53*3ee4fc2aSCody Peter Mello{if(match($0,/^=/))print $0}
54*3ee4fc2aSCody Peter Mello{if(match($0,/!=/))print $0}
55*3ee4fc2aSCody Peter Mello{if(match($0,/<=/))print $0}
56*3ee4fc2aSCody Peter Mello{if(match($0,/>=/))print $0}
57*3ee4fc2aSCody Peter Mello{if(!match($0,/=/))print $0}
58*3ee4fc2aSCody Peter Mello{if(!match($0,/==/))print $0}
59*3ee4fc2aSCody Peter Mello{if(!match($0,/\+=/))print $0}
60*3ee4fc2aSCody Peter Mello{if(!match($0,/\*=/))print $0}
61*3ee4fc2aSCody Peter Mello{if(!match($0,/-=/))print $0}
62*3ee4fc2aSCody Peter Mello{if(!match($0,/%=/))print $0}
63*3ee4fc2aSCody Peter Mello{if(!match($0,/^=/))print $0}
64*3ee4fc2aSCody Peter Mello{if(!match($0,/!=/))print $0}
65*3ee4fc2aSCody Peter Mello{if(!match($0,/<=/))print $0}
66*3ee4fc2aSCody Peter Mello{if(!match($0,/>=/))print $0}
67*3ee4fc2aSCody Peter Mello{if(split($0,foo,/=/))print $0}
68*3ee4fc2aSCody Peter Mello{if(split($0,foo,/\=/))print $0}
69*3ee4fc2aSCody Peter Mello{if(split($0,foo,/==/))print $0}
70*3ee4fc2aSCody Peter Mello{if(split($0,foo,/\+=/))print $0}
71*3ee4fc2aSCody Peter Mello{if(split($0,foo,/\*=/))print $0}
72*3ee4fc2aSCody Peter Mello{if(split($0,foo,/-=/))print $0}
73*3ee4fc2aSCody Peter Mello{if(split($0,foo,/\/=/))print $0}
74*3ee4fc2aSCody Peter Mello{if(split($0,foo,/%=/))print $0}
75*3ee4fc2aSCody Peter Mello{if(split($0,foo,/^=/))print $0}
76*3ee4fc2aSCody Peter Mello{if(split($0,foo,/!=/))print $0}
77*3ee4fc2aSCody Peter Mello{if(split($0,foo,/<=/))print $0}
78*3ee4fc2aSCody Peter Mello{if(split($0,foo,/>=/))print $0}
79*3ee4fc2aSCody Peter Mello{if(sub(/=/,"#"))print $0}
80*3ee4fc2aSCody Peter Mello{if(sub(/\=/,"#"))print $0}
81*3ee4fc2aSCody Peter Mello{if(sub(/==/,"#"))print $0}
82*3ee4fc2aSCody Peter Mello{if(sub(/\+=/,"#"))print $0}
83*3ee4fc2aSCody Peter Mello{if(sub(/\*=/,"#"))print $0}
84*3ee4fc2aSCody Peter Mello{if(sub(/-=/,"#"))print $0}
85*3ee4fc2aSCody Peter Mello{if(sub(/\/=/,"#"))print $0}
86*3ee4fc2aSCody Peter Mello{if(sub(/%=/,"#"))print $0}
87*3ee4fc2aSCody Peter Mello{if(sub(/^=/,"#"))print $0}
88*3ee4fc2aSCody Peter Mello{if(sub(/!=/,"#"))print $0}
89*3ee4fc2aSCody Peter Mello{if(sub(/<=/,"#"))print $0}
90*3ee4fc2aSCody Peter Mello{if(sub(/>=/,"#"))print $0}
91*3ee4fc2aSCody Peter Mello{if(gsub(/=/,"#"))print $0}
92*3ee4fc2aSCody Peter Mello{if(gsub(/\=/,"#"))print $0}
93*3ee4fc2aSCody Peter Mello{if(gsub(/==/,"#"))print $0}
94*3ee4fc2aSCody Peter Mello{if(gsub(/\+=/,"#"))print $0}
95*3ee4fc2aSCody Peter Mello{if(gsub(/\*=/,"#"))print $0}
96*3ee4fc2aSCody Peter Mello{if(gsub(/-=/,"#"))print $0}
97*3ee4fc2aSCody Peter Mello{if(gsub(/\/=/,"#"))print $0}
98*3ee4fc2aSCody Peter Mello{if(gsub(/%=/,"#"))print $0}
99*3ee4fc2aSCody Peter Mello{if(gsub(/^=/,"#"))print $0}
100*3ee4fc2aSCody Peter Mello{if(gsub(/!=/,"#"))print $0}
101*3ee4fc2aSCody Peter Mello{if(gsub(/<=/,"#"))print $0}
102*3ee4fc2aSCody Peter Mello{if(gsub(/>=/,"#"))print $0}
103*3ee4fc2aSCody Peter Mello{if(sub(/=/,"#",$0))print $0}
104*3ee4fc2aSCody Peter Mello{if(sub(/\=/,"#",$0))print $0}
105*3ee4fc2aSCody Peter Mello{if(sub(/==/,"#",$0))print $0}
106*3ee4fc2aSCody Peter Mello{if(sub(/\+=/,"#",$0))print $0}
107*3ee4fc2aSCody Peter Mello{if(sub(/\*=/,"#",$0))print $0}
108*3ee4fc2aSCody Peter Mello{if(sub(/-=/,"#",$0))print $0}
109*3ee4fc2aSCody Peter Mello{if(sub(/\/=/,"#",$0))print $0}
110*3ee4fc2aSCody Peter Mello{if(sub(/%=/,"#",$0))print $0}
111*3ee4fc2aSCody Peter Mello{if(sub(/^=/,"#",$0))print $0}
112*3ee4fc2aSCody Peter Mello{if(sub(/!=/,"#",$0))print $0}
113*3ee4fc2aSCody Peter Mello{if(sub(/<=/,"#",$0))print $0}
114*3ee4fc2aSCody Peter Mello{if(sub(/>=/,"#",$0))print $0}
115*3ee4fc2aSCody Peter Mello{if(sub(/=/,"#",$0))print $0}
116*3ee4fc2aSCody Peter Mello{if(gsub(/\=/,"#",$0))print $0}
117*3ee4fc2aSCody Peter Mello{if(gsub(/==/,"#",$0))print $0}
118*3ee4fc2aSCody Peter Mello{if(gsub(/\+=/,"#",$0))print $0}
119*3ee4fc2aSCody Peter Mello{if(gsub(/\*=/,"#",$0))print $0}
120*3ee4fc2aSCody Peter Mello{if(gsub(/-=/,"#",$0))print $0}
121*3ee4fc2aSCody Peter Mello{if(gsub(/\/=/,"#",$0))print $0}
122*3ee4fc2aSCody Peter Mello{if(gsub(/%=/,"#",$0))print $0}
123*3ee4fc2aSCody Peter Mello{if(gsub(/^=/,"#",$0))print $0}
124*3ee4fc2aSCody Peter Mello{if(gsub(/!=/,"#",$0))print $0}
125*3ee4fc2aSCody Peter Mello{if(gsub(/<=/,"#",$0))print $0}
126*3ee4fc2aSCody Peter Mello{if(gsub(/>=/,"#",$0))print $0}
127