Untitled

Anonymous
plain_text
10/27/2022 6:16 PM
232 B
14
Indexable
#include <iostream>
using namespace std;
int main()
{
	int a, b, c, d;
	cin >> a;
	b = a;
	c = 0;
	d = 0;
	while(c < a){
		c += 5;
		d += 1;
	}
	cout << d;
}
Editor is loading...