hdu 1295 Move Move Look

来源:互联网 发布:parsley.js 手册 编辑:程序博客网 时间:2024/06/05 05:45

找出规律即可。

#include <iostream>#include<stdio.h>using namespace std;  int main(){    int n;    while(scanf("%d",&n)!=EOF)    printf("%d\n",n);    return 0;}