Untitled

public
yousefkarem91 Sep 01, 2024 Never 60
Clone
C++ paste1.cpp 13 lines (8 loc) | 169 Bytes
1
#include <iostream>
2
using namespace std;
3
4
int main() {
5
int location;
6
cin >> location;
7
8
9
int steps = (location + 4) / 5;
10
11
cout <<steps;
12
13
}