From e2d0994387a388a9d0d2e8ce208bb46a3cd0596a Mon Sep 17 00:00:00 2001 From: KiritoTRw <3021577574@qq.com> Date: Sun, 22 May 2016 23:45:15 +0800 Subject: [PATCH] Create 1362.c --- QUSTOJ/1362.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 QUSTOJ/1362.c diff --git a/QUSTOJ/1362.c b/QUSTOJ/1362.c new file mode 100644 index 0000000..91df013 --- /dev/null +++ b/QUSTOJ/1362.c @@ -0,0 +1,8 @@ +#include +int main() +{ + int a,b; + scanf("%d %d",&a,&b); + printf("%d\n",a%b); + return 0; +}