1673: 行列坐标
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Normal Judger
Creator:
Submit:167
Solved:61
Description
【题目描述】
从1开始的n×m个整数按照先行后列的规律排列如下:
给定n与m,再给定一个数字c,请输出c所在的行数与列数。
【输入格式】
第一行:两个整数表示n与m
第二行:一个整数表示c
【输出格式】
两个整数:表示c 所在的行数与列数。
【数据范围】
1≤n,m≤10000
1≤c≤n×m
【样例数据】
输入:
10 10
30
输出:
3 10
Input
第一行:两个整数表示n与m
第二行:一个整数表示c
Output
两个整数:表示c 所在的行数与列数。
Sample Input Copy
10 10
30
Sample Output Copy
3 10