제출 #57245

#제출 시각아이디문제언어결과실행 시간메모리
57245babo창문 (kriii4_C)C++14
100 / 100
4 ms644 KiB
#include <stdio.h>

int main()
{
	long long n,m;
	scanf("%lld %lld",&n,&m);
	printf("%lld\n",(((n+2)%1000000007)*((m+2)%1000000007))%1000000007);
}

컴파일 시 표준 에러 (stderr) 메시지

C.cpp: In function 'int main()':
C.cpp:6:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld %lld",&n,&m);
  ~~~~~^~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...