1 00:00:00,620 --> 00:00:01,370 ‫Welcome back. 2 00:00:01,400 --> 00:00:07,310 ‫In this video, we are going to cover operators and there is plenty to know about these little things 3 00:00:07,310 --> 00:00:10,190 ‫which have a lot of impact onto our programs. 4 00:00:10,190 --> 00:00:17,600 ‫So let's get started straightaway by creating two variables which have a value and one that does not 5 00:00:17,600 --> 00:00:19,340 ‫have a value for now. 6 00:00:19,340 --> 00:00:23,210 ‫So I'm just going to keep it simple, number one, two and three. 7 00:00:23,210 --> 00:00:24,920 ‫And the first one is a value of five. 8 00:00:24,920 --> 00:00:28,370 ‫The second one is three, and the third one is empty for now. 9 00:00:28,370 --> 00:00:36,440 ‫And now let's go ahead and use a urinary operator or multiple ones. 10 00:00:36,440 --> 00:00:43,370 ‫So the first one that I'm going to show you is I'm going to store the value of minus number one in number 11 00:00:43,370 --> 00:00:43,880 ‫three. 12 00:00:43,880 --> 00:00:49,280 ‫So what that's going to do is it will multiply number one with minus one. 13 00:00:50,090 --> 00:00:51,650 ‫If we run that. 14 00:00:51,650 --> 00:00:55,190 ‫So C W console, red line, double tab. 15 00:00:55,400 --> 00:01:04,430 ‫And in here I'm going to write something like num three is and here I use curly brackets zero. 16 00:01:04,830 --> 00:01:12,350 ‫Well that will do is it will simply replace this whole thing here with the first variable that comes 17 00:01:12,350 --> 00:01:13,540 ‫after this comma. 18 00:01:13,550 --> 00:01:16,100 ‫So it's going to be number three in my case. 19 00:01:16,700 --> 00:01:23,020 ‫So now I need console dot read key so that my program doesn't stop. 20 00:01:23,030 --> 00:01:26,870 ‫Once I started and we are number three is minus five. 21 00:01:27,650 --> 00:01:28,640 ‫All right, so there you are. 22 00:01:28,640 --> 00:01:31,730 ‫You see it just multiplies it with minus one. 23 00:01:31,730 --> 00:01:35,090 ‫And in order to check if that's true, we do the same thing. 24 00:01:35,090 --> 00:01:44,210 ‫But now we use NUM one as minus five and they were now it says it's positive so it just multiplies it 25 00:01:44,210 --> 00:01:45,920 ‫with minus one. 26 00:01:46,010 --> 00:01:46,460 ‫Great. 27 00:01:46,460 --> 00:01:47,680 ‫So that's the first one. 28 00:01:47,690 --> 00:01:52,640 ‫Now there is another one and you can do that with logical ones as well. 29 00:01:52,640 --> 00:02:01,130 ‫So let's have a pool which is sunny and let's create it as true and now console right line. 30 00:02:01,130 --> 00:02:03,230 ‫So see W double tab. 31 00:02:03,710 --> 00:02:05,270 ‫Is it sunny? 32 00:02:05,960 --> 00:02:11,990 ‫It's always a good question and it's nice if it is so it's sunny. 33 00:02:11,990 --> 00:02:15,470 ‫That's how you would usually call this sunny variable, right? 34 00:02:15,470 --> 00:02:20,420 ‫So now I'm going to use an exclamation mark just in front of it, just before it. 35 00:02:20,420 --> 00:02:22,520 ‫So what that will do is it will negate it. 36 00:02:22,520 --> 00:02:24,620 ‫So it will be just the opposite. 37 00:02:24,620 --> 00:02:28,370 ‫So if it was true before, now it's going to be false. 38 00:02:28,880 --> 00:02:30,770 ‫So let's check if that's true. 39 00:02:31,620 --> 00:02:34,910 ‫Is it Sunny and it says false? 40 00:02:35,730 --> 00:02:36,360 ‫All right. 41 00:02:36,630 --> 00:02:42,030 ‫So just negation with a simple exclamation mark. 42 00:02:42,300 --> 00:02:46,800 ‫Now, the next thing that I want to show you are increment operators. 43 00:02:48,030 --> 00:02:52,700 ‫So let's go ahead and use increment operators. 44 00:02:52,710 --> 00:02:59,110 ‫And the first one is going to be a new variable, by the way, is going to be zero. 45 00:02:59,140 --> 00:03:06,350 ‫And now what I want to do is I want to increment it and I do that by using the num plus plus. 46 00:03:06,360 --> 00:03:13,830 ‫So I'm just going to copy the code from here and I'm going to use NUM as the variable. 47 00:03:13,860 --> 00:03:17,460 ‫So now let's write that onto the console and see let's see what happens. 48 00:03:17,460 --> 00:03:24,330 ‫And we see NUM is one, so we initialize it with zero and afterwards we increased it by one. 49 00:03:24,330 --> 00:03:29,940 ‫So we incremented it by one and well, that's what changed here. 50 00:03:29,970 --> 00:03:34,650 ‫So now the next thing that I would like to show you is something that's pretty interesting. 51 00:03:34,650 --> 00:03:41,760 ‫So I'm just going to copy that twice and I'm going to increment inside of this statement here, inside 52 00:03:41,760 --> 00:03:43,590 ‫of the right line call. 53 00:03:44,340 --> 00:03:47,820 ‫And what we get here is NUM is one. 54 00:03:47,820 --> 00:03:56,550 ‫So as it was in line 27, then in line 28, NUM is still one and the line 29 it is suddenly two. 55 00:03:56,550 --> 00:04:00,730 ‫So we increment it, but it only takes effect in the next line. 56 00:04:00,750 --> 00:04:02,580 ‫That's something that is really important. 57 00:04:02,970 --> 00:04:11,690 ‫So if we want it to be changed in the same line as we use it, then we use the double plus at the beginning. 58 00:04:11,700 --> 00:04:14,370 ‫So just before the variable name. 59 00:04:14,370 --> 00:04:22,440 ‫So if we run that again we will see num is one then it's still one because incrementing happens only 60 00:04:22,440 --> 00:04:25,170 ‫afterwards and then num is three. 61 00:04:25,170 --> 00:04:28,400 ‫So the incrementing here happens just before. 62 00:04:28,410 --> 00:04:35,220 ‫So we have the increment of the row 28 or line 28 and then we have another increment in line 29. 63 00:04:35,220 --> 00:04:38,580 ‫And that's why we get a value of three here instead of two. 64 00:04:39,780 --> 00:04:40,380 ‫All right. 65 00:04:40,380 --> 00:04:43,920 ‫So that's how you can use increment operators. 66 00:04:43,920 --> 00:04:50,190 ‫You can use the pre increment, that's how it's called pre increment. 67 00:04:51,990 --> 00:04:54,600 ‫And then that will be the post increment here. 68 00:04:54,630 --> 00:04:57,840 ‫That one is the post increment line 28. 69 00:04:57,960 --> 00:04:58,500 ‫All right. 70 00:04:58,500 --> 00:05:03,960 ‫So now the same happens or same applies to decrement operator. 71 00:05:05,280 --> 00:05:07,470 ‫So it's just num minus minus. 72 00:05:07,470 --> 00:05:11,820 ‫So it's the same thing, only that it's with the minus. 73 00:05:11,820 --> 00:05:16,170 ‫Now instead of a plus, I'm just going to copy the code from the top there. 74 00:05:16,470 --> 00:05:21,060 ‫And instead of using plus plus here, I'm using minus, minus. 75 00:05:21,060 --> 00:05:24,480 ‫And the same applies to this line here. 76 00:05:25,050 --> 00:05:27,570 ‫So if you run that again. 77 00:05:29,480 --> 00:05:34,580 ‫We can see it was three then it was decrement it here. 78 00:05:35,620 --> 00:05:38,170 ‫And actually, this is a predicament. 79 00:05:38,710 --> 00:05:44,580 ‫Let me just change that because I copied it and it's good to have it right straight away. 80 00:05:44,590 --> 00:05:50,080 ‫So once again, we start at one, then we increase. 81 00:05:50,080 --> 00:05:53,440 ‫We increase again and then we decrease in here. 82 00:05:53,440 --> 00:06:02,200 ‫Line 33, we show it onto the console, then we decrement once again in line 35 and once again in line 83 00:06:02,200 --> 00:06:02,680 ‫37. 84 00:06:02,680 --> 00:06:04,180 ‫But there we predicament. 85 00:06:04,180 --> 00:06:08,590 ‫So now we have both decrements stated just here. 86 00:06:09,130 --> 00:06:12,290 ‫So that's the increment and decrement. 87 00:06:12,310 --> 00:06:16,900 ‫Now let's have a look at the additive and multiplicative operators. 88 00:06:16,900 --> 00:06:20,470 ‫They're pretty straightforward, but they're still important. 89 00:06:20,470 --> 00:06:21,850 ‫So let's have a look at them. 90 00:06:21,850 --> 00:06:28,300 ‫You probably know them already and we used some of them, but just to complete everything, I want to 91 00:06:28,330 --> 00:06:29,140 ‫use it here. 92 00:06:29,140 --> 00:06:34,960 ‫So I'm just going to use result and result is going to be number one plus number two. 93 00:06:34,960 --> 00:06:38,860 ‫And you might recall number one was five and number two was three. 94 00:06:39,280 --> 00:06:41,830 ‫So that should be eight. 95 00:06:42,160 --> 00:06:44,470 ‫And there's nothing wrong about that. 96 00:06:44,470 --> 00:06:45,700 ‫So let's just. 97 00:06:46,750 --> 00:06:48,970 ‫Use this console right line. 98 00:06:48,970 --> 00:06:57,130 ‫Again, just to keep it simple, I'm going to say result of num one plus num two maybe that's better 99 00:06:57,160 --> 00:07:00,400 ‫is and it's going to be the result here. 100 00:07:00,490 --> 00:07:06,940 ‫So if we add that's plain simple it should be eight that we are a result of number one plus number two 101 00:07:06,970 --> 00:07:07,750 ‫is eight. 102 00:07:07,930 --> 00:07:09,790 ‫So five plus three is eight. 103 00:07:09,820 --> 00:07:12,430 ‫Now we do the same thing with minus. 104 00:07:13,580 --> 00:07:16,730 ‫And now let's use a minus sign here. 105 00:07:17,450 --> 00:07:20,160 ‫If you run it, then we see it's two. 106 00:07:20,180 --> 00:07:22,610 ‫So five minus three is two. 107 00:07:23,240 --> 00:07:24,990 ‫So nothing fancy here. 108 00:07:25,010 --> 00:07:29,440 ‫And now let's have a look at multiplying and dividing. 109 00:07:29,450 --> 00:07:30,830 ‫So I'm going to do that. 110 00:07:30,860 --> 00:07:39,170 ‫And the same thing result of and that was actually minus and that one will be divided and the last one 111 00:07:39,170 --> 00:07:41,240 ‫will be multiplication. 112 00:07:43,010 --> 00:07:46,370 ‫So let's run that again and still nothing fancy. 113 00:07:46,370 --> 00:07:48,950 ‫So if you want to divide, you simply use the slash. 114 00:07:48,980 --> 00:07:52,130 ‫If you want to multiply, you use the star, right? 115 00:07:52,130 --> 00:08:00,320 ‫So five times three is 15, then five divided by three is one and it's simply one because we have integers 116 00:08:00,320 --> 00:08:07,940 ‫here and integers don't understand what floats are, so they can't have anything behind the decimal 117 00:08:07,940 --> 00:08:10,010 ‫point or after the decimal point. 118 00:08:10,160 --> 00:08:13,700 ‫So if you would use doubles instead, then we would get a more precise value. 119 00:08:13,700 --> 00:08:18,290 ‫But otherwise it's just one and it doesn't round down or round up. 120 00:08:18,440 --> 00:08:22,070 ‫It just cuts off anything that is behind the decimal point. 121 00:08:22,070 --> 00:08:24,020 ‫So that's how integers divide. 122 00:08:24,140 --> 00:08:31,940 ‫Then there is one more thing and it's called the modulo operator and the modulo operator is done like 123 00:08:31,940 --> 00:08:32,690 ‫that. 124 00:08:33,730 --> 00:08:37,060 ‫And what that will do is it will result in two. 125 00:08:37,300 --> 00:08:44,110 ‫So we divide value one by two and we simply return the remainder. 126 00:08:44,590 --> 00:08:45,400 ‫So. 127 00:08:46,570 --> 00:08:51,610 ‫Just gives us the remainder and in our case, num one divided by num two. 128 00:08:51,640 --> 00:08:55,930 ‫So five divided by three is one remainder two. 129 00:08:56,320 --> 00:08:57,460 ‫That's what we get here. 130 00:08:57,460 --> 00:09:00,790 ‫So that's what you need to modulo four and that's pretty useful. 131 00:09:00,790 --> 00:09:06,400 ‫So don't underestimate the modulo you might not have used it so far in school or whatever, but it's 132 00:09:06,400 --> 00:09:08,200 ‫pretty useful in programming. 133 00:09:08,590 --> 00:09:10,450 ‫So keep it, keep that in mind. 134 00:09:10,540 --> 00:09:15,850 ‫Then the next one is relational and type operators. 135 00:09:16,750 --> 00:09:24,190 ‫So I'm going to create a bool here and I'm going to call it is lower and I'm going to set is lower two 136 00:09:24,190 --> 00:09:26,590 ‫num one lower num two. 137 00:09:26,680 --> 00:09:29,500 ‫And what that will return if. 138 00:09:30,100 --> 00:09:34,460 ‫No one is actually lower or lower value than number two. 139 00:09:34,480 --> 00:09:37,330 ‫So we check is five lower than three. 140 00:09:37,510 --> 00:09:45,520 ‫And if we simply print that onto the console, let's do that result of number one lower. 141 00:09:45,520 --> 00:09:49,630 ‫Number two is and it's going to be is lower. 142 00:09:50,080 --> 00:09:51,550 ‫So let's run that again. 143 00:09:51,880 --> 00:09:54,790 ‫And we see result of number one, lower. 144 00:09:54,790 --> 00:09:56,170 ‫Number two is false. 145 00:09:56,170 --> 00:10:00,730 ‫And that is because well, five is not lower than than three. 146 00:10:00,970 --> 00:10:02,740 ‫And that's pretty much what we say here. 147 00:10:02,740 --> 00:10:05,350 ‫So if we turn it the other way around. 148 00:10:06,460 --> 00:10:10,080 ‫So we said number one is higher than them, two are bigger than them. 149 00:10:10,090 --> 00:10:14,530 ‫Two, we get the statement here, result of is true. 150 00:10:14,980 --> 00:10:18,070 ‫So that's what you can simply do. 151 00:10:18,070 --> 00:10:23,530 ‫So you can compare and you can store something within a variable straight away after checking something 152 00:10:23,530 --> 00:10:23,740 ‫here. 153 00:10:23,740 --> 00:10:29,260 ‫So this is a relational operator here and we can do the same thing with double equal sign. 154 00:10:29,260 --> 00:10:37,690 ‫So it's going to equality operator and I'm going to create a blue here is equal and I'm going to say 155 00:10:37,690 --> 00:10:43,600 ‫is equal is going to be the result of num one is equal to num two. 156 00:10:43,600 --> 00:10:47,560 ‫So you have the double equal sign and you use that for comparisons. 157 00:10:47,560 --> 00:10:52,690 ‫So you compare is whatever is on the right, the same as whatever is on the left. 158 00:10:53,020 --> 00:10:59,560 ‫So this one is an assigning equal sign and that one is a comparing equal sign or a double equal sign 159 00:10:59,560 --> 00:11:00,520 ‫is comparing. 160 00:11:00,700 --> 00:11:03,460 ‫So in operator end left and right. 161 00:11:03,460 --> 00:11:10,510 ‫So as you can see, this is actually a method that is called here bool int dot operator is equal to. 162 00:11:10,960 --> 00:11:12,190 ‫So that's pretty cool. 163 00:11:12,280 --> 00:11:16,660 ‫It does that for us automatically and it stores the result and is equal. 164 00:11:16,660 --> 00:11:24,220 ‫So as you can see, if I double tap on that, it says it returns a bull bull int dot operator. 165 00:11:24,220 --> 00:11:30,070 ‫So it's method there is a method behind that and it's called in order to give us the result. 166 00:11:30,070 --> 00:11:39,160 ‫And I'm just going to use that and I'm going to say is double equal is equal here. 167 00:11:39,970 --> 00:11:48,040 ‫So let's run that again and we see result of num one is equal, num two is false and that is because 168 00:11:48,250 --> 00:11:50,080 ‫three is not equal to five. 169 00:11:50,820 --> 00:11:52,260 ‫And that's pretty much it, right? 170 00:11:52,890 --> 00:11:54,930 ‫So now that's equality. 171 00:11:54,930 --> 00:11:57,570 ‫And now we have the opposite of equality. 172 00:11:57,960 --> 00:12:04,620 ‫And I'm going to simply say is equal is going to be number one, not equal. 173 00:12:04,620 --> 00:12:07,920 ‫Number two, that will return true. 174 00:12:07,920 --> 00:12:13,890 ‫On the other hand, because the statement here is actually true because number one is not equal. 175 00:12:13,890 --> 00:12:14,690 ‫Number two. 176 00:12:14,700 --> 00:12:16,230 ‫And if we double tap here. 177 00:12:17,600 --> 00:12:18,440 ‫Hint operator. 178 00:12:18,470 --> 00:12:21,340 ‫Not equal in left and right. 179 00:12:21,350 --> 00:12:25,340 ‫So it's comparing those two and it says, are they equal or not equal? 180 00:12:25,340 --> 00:12:29,570 ‫And it's actually going to be not equal. 181 00:12:29,570 --> 00:12:31,190 ‫So it means it's true. 182 00:12:31,730 --> 00:12:37,580 ‫So you see the last statement result of num one, not equal num two is true. 183 00:12:39,300 --> 00:12:45,240 ‫So this video is getting pretty long and I'm going to end it with the conditional operators. 184 00:12:45,240 --> 00:12:53,490 ‫So conditional operators and those ones will be pretty handy as soon as we go into if and else if the 185 00:12:53,490 --> 00:12:57,390 ‫same with equality operators and those relational ones. 186 00:12:57,390 --> 00:13:01,710 ‫So we're going to use all of those when we use if statements and that's really, really important. 187 00:13:01,710 --> 00:13:08,850 ‫So let's go ahead and create another boolean and I'm going to call it is lower and sunny and I'm going 188 00:13:08,850 --> 00:13:16,200 ‫to check is lower and sunny is going to be is lower and is sunny. 189 00:13:17,550 --> 00:13:18,750 ‫How crazy is that? 190 00:13:18,750 --> 00:13:21,300 ‫So we use those two booleans is lower. 191 00:13:21,300 --> 00:13:24,390 ‫That's that one here and the one is sunny. 192 00:13:24,390 --> 00:13:31,890 ‫That's the one right at the start here in line 21 in my case bool is sunny was set to true and here. 193 00:13:33,370 --> 00:13:34,420 ‫I'm actually. 194 00:13:34,420 --> 00:13:36,970 ‫I still have it as true, even though I'm negating it here. 195 00:13:36,970 --> 00:13:39,660 ‫But I'm only negating it for this sentence here. 196 00:13:39,670 --> 00:13:43,080 ‫I'm not negating the variable itself, so it should still be true. 197 00:13:43,090 --> 00:13:44,950 ‫So is sunny is still true. 198 00:13:44,990 --> 00:13:46,440 ‫Now checking is lower. 199 00:13:46,450 --> 00:13:47,420 ‫Also true. 200 00:13:47,440 --> 00:13:48,670 ‫So let's have a look. 201 00:13:48,670 --> 00:13:52,660 ‫Pool is lower num one bigger than that. 202 00:13:52,660 --> 00:13:56,860 ‫So it's not going to be true because number one is not higher than num two. 203 00:13:56,860 --> 00:13:59,620 ‫So this whole statement here is going to be false. 204 00:13:59,620 --> 00:14:01,330 ‫So let's check that. 205 00:14:01,330 --> 00:14:03,220 ‫Let's write it on to the console. 206 00:14:03,220 --> 00:14:14,860 ‫And we just going to say result of is lower and is sunny is and then it's going to be is lower and is 207 00:14:14,860 --> 00:14:21,520 ‫sunny now if you run that result of is lower and is sunny is true. 208 00:14:21,790 --> 00:14:22,300 ‫All right. 209 00:14:22,300 --> 00:14:26,710 ‫So now let's check why that is, because we checked here. 210 00:14:26,710 --> 00:14:28,840 ‫Number one is higher than number two. 211 00:14:28,840 --> 00:14:34,090 ‫And that is actually true because number one was five and M two is. 212 00:14:35,290 --> 00:14:35,960 ‫Three. 213 00:14:35,980 --> 00:14:38,260 ‫So that's why we have to turn it around here. 214 00:14:38,260 --> 00:14:39,730 ‫And now that statement is true. 215 00:14:39,730 --> 00:14:45,490 ‫So the whole statement is only true if both statements are true, and that's why it's lower and sunny 216 00:14:45,550 --> 00:14:46,920 ‫is true. 217 00:14:46,930 --> 00:14:49,210 ‫So it's pretty much like the end. 218 00:14:49,210 --> 00:14:51,760 ‫You might have seen that at school. 219 00:14:51,760 --> 00:15:04,630 ‫So end condition one and condition two, or in our case, bool one and bool two has to be true. 220 00:15:04,660 --> 00:15:07,540 ‫Otherwise this whole is lower and sunny is not true. 221 00:15:07,540 --> 00:15:13,180 ‫So if we turn it around now and we check it again, then this whole statement will be false. 222 00:15:13,180 --> 00:15:16,060 ‫So result of is lower and is sunny is false. 223 00:15:17,550 --> 00:15:18,300 ‫All right. 224 00:15:18,300 --> 00:15:19,950 ‫So one more thing. 225 00:15:19,950 --> 00:15:22,220 ‫And that's the last one for this video. 226 00:15:22,230 --> 00:15:30,600 ‫And that's where we compare the or or we use the OR operator, which is is lower and sunny is going 227 00:15:30,600 --> 00:15:35,010 ‫to be is lower or is sunny. 228 00:15:35,010 --> 00:15:42,120 ‫So we have seen that this one was false already because one of the two was not true or both were not 229 00:15:42,120 --> 00:15:42,600 ‫true. 230 00:15:42,600 --> 00:15:45,510 ‫But we know that it's sunny was true, actually. 231 00:15:45,510 --> 00:15:48,990 ‫So now this whole statement is going to be true as well. 232 00:15:49,530 --> 00:15:54,690 ‫So let me copy that and use the double pipe. 233 00:15:54,990 --> 00:15:57,330 ‫So you need to use the double pipe here. 234 00:15:58,890 --> 00:16:05,850 ‫Then we see result of is lower or is sunny is true and that is because is sunny is true. 235 00:16:06,240 --> 00:16:10,890 ‫And if is is lower is also true, then this statement is still true. 236 00:16:10,890 --> 00:16:16,020 ‫Only if both of them are false, then is lower and sunny is going to be false. 237 00:16:16,910 --> 00:16:21,380 ‫So that's the or so here. 238 00:16:21,410 --> 00:16:27,470 ‫Condition one or condition two has to be true. 239 00:16:27,920 --> 00:16:29,070 ‫Then this whole statement is true. 240 00:16:29,090 --> 00:16:30,200 ‫Otherwise, it's false. 241 00:16:30,560 --> 00:16:31,130 ‫All right. 242 00:16:31,130 --> 00:16:35,420 ‫So plenty of operators and. 243 00:16:36,270 --> 00:16:36,720 ‫Yeah. 244 00:16:36,720 --> 00:16:40,380 ‫So now you have seen all of them and there is no exercise for this video. 245 00:16:40,380 --> 00:16:44,280 ‫I'm sorry, but there will be plenty of exercises in the following videos. 246 00:16:44,280 --> 00:16:52,110 ‫So if you are not 100% sure about one of them, just check the video at that point once again and try 247 00:16:52,110 --> 00:16:58,800 ‫to copy all of the code and try to understand every single step because those are very, very important 248 00:16:58,800 --> 00:17:04,440 ‫basics that we are just going to use a lot and we're going to use them without really going too much 249 00:17:04,440 --> 00:17:09,030 ‫into detail about what they do, because we did that here. 250 00:17:09,240 --> 00:17:14,550 ‫So from now on, I'm going to use those things as if they are in your flight, flesh and blood, and 251 00:17:14,550 --> 00:17:16,110 ‫you know them by heart. 252 00:17:16,110 --> 00:17:21,390 ‫And I could wake you up at 3:00 and say, number one, equal, equal number two, is it true or not? 253 00:17:21,390 --> 00:17:22,500 ‫And you get the two values. 254 00:17:22,500 --> 00:17:24,450 ‫Then you have to say, okay, yeah, that's true. 255 00:17:24,450 --> 00:17:28,230 ‫And then based on that, you either get water on your face or you don't. 256 00:17:28,620 --> 00:17:31,380 ‫So that's pretty much the approach here. 257 00:17:31,380 --> 00:17:34,320 ‫So hope you enjoyed the video. 258 00:17:34,320 --> 00:17:35,880 ‫It was a long one, I know that. 259 00:17:35,880 --> 00:17:39,180 ‫But in the next video, we're going to go ahead and do something shorter. 260 00:17:39,180 --> 00:17:40,230 ‫So see you there.