SCHOOL09-Editorial

PROBLEM LINK:

Practice : SCHOOL09 Problem - CodeChef

Contest :Contest Page | CodeChef

Author: laks
Editorialist: laks

DIFFICULTY:

CAKEWALK.

PREREQUISITES:

NO.

COOL PROBLEM

PROBLEM:

Car is accelerating at speed of 120km/hr and the chef is seeing the car. Chef thinks that how many times a car tire rotates in 1 minutes. The chef is a little bit busy. Can you help chef ?

input: - First line will contain integer N showing angle.

Output: For each testcase, output in a single line answer given by total rotation per second.

QUICK EXPLANATION:

In this, a problem you have to create a program in which you should enter the input and result will print according to rotation per second.

EXPLANATION:

In this, you have to write code like this first, you have to write simple code but problem statement is cool. SEE CODE FOR EASY UNDERSTANDING.

SOLUTIONS:

[details=“Setter’s Solution”]
# include
using namespace std;

int main() {
// your code goes here

int a,n;
n=60;
cin>>a;
n=a/n;
cout<<n<<endl;

return 0;

}