program abc implicit none integer a integer b integer ans read *, a, b ans = a + b print *, ans stop end program abc