Problem hidden
This problem was hidden by Editorial Board member probably because it has incorrect language version or invalid test data, or description of the problem is not clear.

RGB7011 - Минут секунд

Өгөгдсөн секундыг минут секунд болго.

Input

Секунд Int тоон утгаар өгөгдөнө.

Output

Минут секундыг зайгаар тусгаарлан хэвлэ.

Example

Input:
200

Output:
3 20

Added by:Bataa
Date:2011-05-13
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:NCSHARP C++ 4.3.2 CPP CPP14 JULIA PYPY3

hide comments
2023-09-14 08:43:35
// Online C++ compiler to run C++ program online
#include<iostream>
using namespace std;
int main(){
int n, a, b;
cin>>n;
a=n/60;
b=n%60;

cout<<a <<" ";
cout<<b <<" ";
return 0;
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.