B-简单时间转换

简单时间转换

Time Limit: 1000MS  Memory Limit: 65536KB
Submit  Statistic

Problem Description

这道题很简单,你只需要完成分和秒之间的转换即可。

保证输入输出数据均为正整数,且在 int 范围内。

Output

一个整数,表示分。

Input

一个整数,表示秒。

Example Output

2

Example Input

120

Hint

Author

「SDUT Round #3 - 2017 愚人节专场」by bLue
#include 

using namespace std;

int main()
{
  int n;
  while(cin>>n)

  cout< 
   

你可能感兴趣的:(ACM-,2017,sdut愚人节专场,题解)