Difficulty: Very Easy
Time to solve: 1-2 min
Video this is covered in: 1-20
#include
using namespace std;
int main(){
int i=0;
for (i=0; i<100; i++){
cout << i;
if ((i % 25)==0){
break;
}
}
cout <